From 8214a1746c6d71d34a085e52d139bf1aa46f16fc Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 2 May 2009 16:52:21 +0000 Subject: [PATCH] (svn r16204) -Codechange: Completing widget numbers of news settings window. --- src/news_gui.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/news_gui.cpp b/src/news_gui.cpp index 01dd93807a..2d880ed911 100644 --- a/src/news_gui.cpp +++ b/src/news_gui.cpp @@ -817,10 +817,17 @@ void ShowMessageHistory() /** News settings window widget offset constants */ -enum { - WIDGET_NEWSOPT_DROP_SUMMARY = 4, ///< Dropdown that adjusts at once the level for all settings - WIDGET_NEWSOPT_SOUNDTICKER = 6, ///< Button activating sound on events - WIDGET_NEWSOPT_START_OPTION = 8, ///< First widget that is part of a group [<] .. [.] +enum NewsSettingsWidgets { + WIDGET_NEWSOPT_CLOSEBOX, ///< Close box. + WIDGET_NEWSOPT_CAPTION, ///< Caption. + WIDGET_NEWSOPT_BACKGROUND, ///< Background widget. + WIDGET_NEWSOPT_LABEL, ///< Top label. + WIDGET_NEWSOPT_DROP_SUMMARY, ///< Dropdown that adjusts at once the level for all settings. + WIDGET_NEWSOPT_LABEL_SUMMARY, ///< Label of the summary drop down. + WIDGET_NEWSOPT_SOUNDTICKER, ///< Button for (de)activating sound on events. + WIDGET_NEWSOPT_SOUNDTICKER_LABEL, ///< Label of the soundticker button, + + WIDGET_NEWSOPT_START_OPTION, ///< First widget that is part of a group [<] .. [.] }; static const StringID _message_opt[] = {STR_OFF, STR_SUMMARY, STR_FULL, INVALID_STRING_ID};