mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-28 07:58:08 +01:00
fix variable name misspelling
This commit is contained in:
parent
7c937fd763
commit
168ebeeb5b
1 changed files with 3 additions and 3 deletions
|
@ -1075,9 +1075,9 @@ disenable_buttons( GtkAppGlobals* globals )
|
|||
XP_Bool canToggle = board_canTogglePending( globals->cGlobals.game.board );
|
||||
gtk_widget_set_sensitive( globals->toggle_undo_button, canToggle );
|
||||
|
||||
XP_Bool canHing = board_canHint( globals->cGlobals.game.board );
|
||||
gtk_widget_set_sensitive( globals->prevhint_button, canHing );
|
||||
gtk_widget_set_sensitive( globals->nexthint_button, canHing );
|
||||
XP_Bool canHint = board_canHint( globals->cGlobals.game.board );
|
||||
gtk_widget_set_sensitive( globals->prevhint_button, canHint );
|
||||
gtk_widget_set_sensitive( globals->nexthint_button, canHint );
|
||||
|
||||
#ifdef XWFEATURE_CHAT
|
||||
XP_Bool canChat = !!globals->cGlobals.game.comms
|
||||
|
|
Loading…
Add table
Reference in a new issue