summaryrefslogtreecommitdiff
path: root/src/widgets/misc_widget.h
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-12-19 20:46:17 +0000
committertruebrain <truebrain@openttd.org>2011-12-19 20:46:17 +0000
commitbcbdc3933c4aeff90692a1059375b1f590e7c904 (patch)
treee88b733b9ea32dc510656e425a85b94c779323ee /src/widgets/misc_widget.h
parent285621eb9ab8218206c99f7338a740fd634e3061 (diff)
downloadopenttd-bcbdc3933c4aeff90692a1059375b1f590e7c904.tar.xz
(svn r23600) -Codechange: link WC+number to a Widget, and the Widget to a Window class
Diffstat (limited to 'src/widgets/misc_widget.h')
-rw-r--r--src/widgets/misc_widget.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets/misc_widget.h b/src/widgets/misc_widget.h
index 580909931..04f81da71 100644
--- a/src/widgets/misc_widget.h
+++ b/src/widgets/misc_widget.h
@@ -12,23 +12,23 @@
#ifndef WIDGETS_MISC_WIDGET_H
#define WIDGETS_MISC_WIDGET_H
-/** Widgets of the WC_LAND_INFO. */
+/** Widgets of the #LandInfoWindow class. */
enum LandInfoWidgets {
WID_LI_BACKGROUND, ///< Background of the window.
};
-/** Widgets of the WC_TOOLTIPS. */
+/** Widgets of the #TooltipsWindow class. */
enum ToolTipsWidgets {
WID_TT_BACKGROUND, ///< Background of the window.
};
-/** Widgets of the WC_GAME_OPTIONS (WC_GAME_OPTIONS is also used in others). */
+/** Widgets of the #AboutWindow class. */
enum AboutWidgets {
WID_A_SCROLLING_TEXT, ///< The actually scrolling text.
WID_A_WEBSITE, ///< URL of OpenTTD website.
};
-/** Widgets of the WC_QUERY_STRING (WC_QUERY_STRING is also used in QueryEditSignWidgets). */
+/** Widgets of the #QueryStringWindow class. */
enum QueryStringWidgets {
WID_QS_CAPTION, ///< Caption of the window.
WID_QS_TEXT, ///< Text of the query.
@@ -37,7 +37,7 @@ enum QueryStringWidgets {
WID_QS_OK, ///< OK button.
};
-/** Widgets of the WC_CONFIRM_POPUP_QUERY (WC_CONFIRM_POPUP_QUERY is also used in BootstrapAskForDownloadWidgets). */
+/** Widgets of the #QueryWindow class. */
enum QueryWidgets {
WID_Q_CAPTION, ///< Caption of the window.
WID_Q_TEXT, ///< Text of the query.