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