remove unused parameter

This commit is contained in:
ehouse 2006-06-26 04:39:48 +00:00
parent f2906db239
commit 354cde389e
2 changed files with 2 additions and 2 deletions

View file

@ -2531,7 +2531,7 @@ handleActionInCell( BoardCtxt* board, XP_U16 col, XP_U16 row )
#ifdef POINTER_SUPPORT #ifdef POINTER_SUPPORT
XP_Bool 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; XP_Bool result = XP_FALSE;
BoardObjectType prevObj = board->penDownObject; BoardObjectType prevObj = board->penDownObject;

View file

@ -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 board_handlePenDown( BoardCtxt* board, XP_U16 x, XP_U16 y,
XP_Bool* handled ); XP_Bool* handled );
XP_Bool board_handlePenMove( BoardCtxt* board, XP_U16 x, XP_U16 y ); 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 #endif
XP_Bool board_handleKey( BoardCtxt* board, XP_Key key ); XP_Bool board_handleKey( BoardCtxt* board, XP_Key key );