summaryrefslogtreecommitdiff
path: root/src/settings_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-07-02 12:49:44 +0000
committerfrosch <frosch@openttd.org>2011-07-02 12:49:44 +0000
commit1688470eb9b511990089eab1eec9f0ba3104d4c5 (patch)
tree6dc4dd8533157db6feb482607001c14be3dd733c /src/settings_gui.cpp
parent56a41a8852c6bad2119100d0758ca297e61c80c1 (diff)
downloadopenttd-1688470eb9b511990089eab1eec9f0ba3104d4c5.tar.xz
(svn r22617) -Codechange: Add GameOptionsInvalidationData enum for data values for Window::OnInvalidateData() of windows with class WC_GAME_OPTIONS.
Diffstat (limited to 'src/settings_gui.cpp')
-rw-r--r--src/settings_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp
index 9d0ce42b8..55db5b102 100644
--- a/src/settings_gui.cpp
+++ b/src/settings_gui.cpp
@@ -527,7 +527,7 @@ struct GameOptionsWindow : Window {
/**
* Some data on this window has become invalid.
- * @param data Information about the changed data.
+ * @param data Information about the changed data. @see GameOptionsInvalidationData
* @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
*/
virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
@@ -797,7 +797,7 @@ public:
/**
* Some data on this window has become invalid.
- * @param data Information about the changed data.
+ * @param data Information about the changed data. @see GameOptionsInvalidationData
* @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
*/
virtual void OnInvalidateData(int data = 0, bool gui_scope = true)