(svn r13800) -Codechange: minor comment style fixes in misc_gui.cpp

This commit is contained in:
smatz 2008-07-23 15:01:50 +00:00
parent ec6aff4870
commit 4835e300c4
1 changed files with 11 additions and 10 deletions

View File

@ -424,7 +424,7 @@ public:
height = max<int>(height, h);
if (msg1 == INVALID_STRING_ID) {
// only 1 line will be printed
/* only 1 line will be printed */
y[1] = (height - 15) / 2 + 15 - 5;
} else {
int over = (height - h) / 4;
@ -1272,7 +1272,8 @@ static const WindowDesc _query_desc = {
* @param message string that will be shown for the window
* @param parent pointer to parent window, if this pointer is NULL the parent becomes
* the main window WC_MAIN_WINDOW
* @param callback callback function pointer to set in the window descriptor*/
* @param callback callback function pointer to set in the window descriptor
*/
void ShowQuery(StringID caption, StringID message, Window *parent, QueryCallbackProc *callback)
{
new QueryWindow(&_query_desc, caption, message, parent, callback);
@ -1382,7 +1383,7 @@ struct SaveLoadWindow : public QueryStringBaseWindow {
void GenerateFileName()
{
/* Check if we are not a spectator who wants to generate a name..
Let's use the name of player #0 for now. */
* Let's use the name of player #0 for now. */
const Player *p = GetPlayer(IsValidPlayerID(_local_player) ? _local_player : PLAYER_FIRST);
SetDParam(0, p->index);