mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
remove unused parameter
This commit is contained in:
parent
f2906db239
commit
354cde389e
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in a new issue