From 354cde389eeec8b89c0601f2b2ec55daa03f4ed4 Mon Sep 17 00:00:00 2001 From: ehouse Date: Mon, 26 Jun 2006 04:39:48 +0000 Subject: [PATCH] remove unused parameter --- xwords4/common/board.c | 2 +- xwords4/common/board.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xwords4/common/board.c b/xwords4/common/board.c index 9da340fe5..4c42b7c64 100644 --- a/xwords4/common/board.c +++ b/xwords4/common/board.c @@ -2531,7 +2531,7 @@ handleActionInCell( BoardCtxt* board, XP_U16 col, XP_U16 row ) #ifdef POINTER_SUPPORT XP_Bool -board_handlePenUp( BoardCtxt* board, XP_U16 x, XP_U16 y, XP_Time when ) +board_handlePenUp( BoardCtxt* board, XP_U16 x, XP_U16 y ) { XP_Bool result = XP_FALSE; BoardObjectType prevObj = board->penDownObject; diff --git a/xwords4/common/board.h b/xwords4/common/board.h index adcfd96be..1a5271bce 100644 --- a/xwords4/common/board.h +++ b/xwords4/common/board.h @@ -131,7 +131,7 @@ void board_formatRemainingTiles( BoardCtxt* board, XWStreamCtxt* stream ); XP_Bool board_handlePenDown( BoardCtxt* board, XP_U16 x, XP_U16 y, XP_Bool* handled ); XP_Bool board_handlePenMove( BoardCtxt* board, XP_U16 x, XP_U16 y ); -XP_Bool board_handlePenUp( BoardCtxt* board, XP_U16 x, XP_U16 y, XP_Time when ); +XP_Bool board_handlePenUp( BoardCtxt* board, XP_U16 x, XP_U16 y ); #endif XP_Bool board_handleKey( BoardCtxt* board, XP_Key key );