mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-18 10:08:29 +01:00
Make linux compile with latest changes
This commit is contained in:
parent
fbc2f86187
commit
4971a622ce
3 changed files with 6 additions and 1 deletions
|
@ -50,6 +50,8 @@ enum {
|
|||
STRD_TRADED,
|
||||
STR_LOSTTURN,
|
||||
|
||||
STRS_VALUES_HEADER,
|
||||
|
||||
STR_LAST
|
||||
};
|
||||
|
||||
|
|
|
@ -493,7 +493,7 @@ tile_values( GtkWidget* widget, GtkAppGlobals* globals )
|
|||
globals,
|
||||
CHANNEL_NONE,
|
||||
catOnClose );
|
||||
server_formatPoolCounts( globals->cGlobals.game.server, stream, 5 );
|
||||
server_formatDictCounts( globals->cGlobals.game.server, stream, 5 );
|
||||
stream_putU8( stream, '\n' );
|
||||
stream_destroy( stream );
|
||||
}
|
||||
|
|
|
@ -458,6 +458,9 @@ linux_util_getUserString( XW_UtilCtxt* uc, XP_U16 code )
|
|||
case STR_LOSTTURN:
|
||||
return "Lost turn";
|
||||
|
||||
case STRS_VALUES_HEADER:
|
||||
return "%s counts/values:\n";
|
||||
|
||||
default:
|
||||
return "unknown code to linux_util_getUserString";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue