From d3cf74920e92ffd5a719961820ebb50d0cb52cbe Mon Sep 17 00:00:00 2001 From: Eric House Date: Wed, 10 Feb 2021 19:37:19 -0800 Subject: [PATCH] remove unused method --- xwords4/common/board.c | 6 ------ xwords4/common/board.h | 1 - 2 files changed, 7 deletions(-) diff --git a/xwords4/common/board.c b/xwords4/common/board.c index 842b43411..d872a31f9 100644 --- a/xwords4/common/board.c +++ b/xwords4/common/board.c @@ -2059,12 +2059,6 @@ board_inTrade( const BoardCtxt* board, XP_Bool* anySelected ) return pti->tradeInProgress; } -XP_Bool -board_get_showValues( const BoardCtxt* board ) -{ - return board->showCellValues; -} - XP_Bool board_toggle_showValues( BoardCtxt* board ) { diff --git a/xwords4/common/board.h b/xwords4/common/board.h index 1216d3378..cd369defc 100644 --- a/xwords4/common/board.h +++ b/xwords4/common/board.h @@ -148,7 +148,6 @@ XP_Bool board_draw( BoardCtxt* board, XWEnv xwe ); XP_Bool board_get_flipped( const BoardCtxt* board ); XP_Bool board_flip( BoardCtxt* board ); XP_Bool board_inTrade( const BoardCtxt* board, XP_Bool* anySelected ); -XP_Bool board_get_showValues( const BoardCtxt* board ); XP_Bool board_toggle_showValues( BoardCtxt* board ); XP_Bool board_replaceTiles( BoardCtxt* board, XWEnv xwe ); XP_Bool board_redoReplacedTiles( BoardCtxt* board, XWEnv xwe );