diff options
author | truebrain <truebrain@openttd.org> | 2011-12-19 20:46:17 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-12-19 20:46:17 +0000 |
commit | bcbdc3933c4aeff90692a1059375b1f590e7c904 (patch) | |
tree | e88b733b9ea32dc510656e425a85b94c779323ee /src/widgets/town_widget.h | |
parent | 285621eb9ab8218206c99f7338a740fd634e3061 (diff) | |
download | openttd-bcbdc3933c4aeff90692a1059375b1f590e7c904.tar.xz |
(svn r23600) -Codechange: link WC+number to a Widget, and the Widget to a Window class
Diffstat (limited to 'src/widgets/town_widget.h')
-rw-r--r-- | src/widgets/town_widget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/town_widget.h b/src/widgets/town_widget.h index 7e554f239..2f2a97e6d 100644 --- a/src/widgets/town_widget.h +++ b/src/widgets/town_widget.h @@ -12,7 +12,7 @@ #ifndef WIDGETS_TOWN_WIDGET_H #define WIDGETS_TOWN_WIDGET_H -/** Widgets of the WC_TOWN_DIRECTORY. */ +/** Widgets of the #TownDirectoryWindow class. */ enum TownDirectoryWidgets { WID_TD_SORT_NAME, ///< Sort by town name. WID_TD_SORT_POPULATION, ///< Sort by town population. @@ -21,7 +21,7 @@ enum TownDirectoryWidgets { WID_TD_WORLD_POPULATION, ///< The world's population. }; -/** Widgets of the WC_TOWN_AUTHORITY. */ +/** Widgets of the #TownAuthorityWindow class. */ enum TownAuthorityWidgets { WID_TA_CAPTION, ///< Caption of window. WID_TA_RATING_INFO, ///< Overview with ratings for each company. @@ -31,7 +31,7 @@ enum TownAuthorityWidgets { WID_TA_EXECUTE, ///< Do-it button. }; -/** Widgets of the WC_TOWN_VIEW. */ +/** Widgets of the #TownViewWindow class. */ enum TownViewWidgets { WID_TV_CAPTION, ///< Caption of window. WID_TV_VIEWPORT, ///< View of the center of the town. @@ -43,7 +43,7 @@ enum TownViewWidgets { WID_TV_DELETE, ///< Delete this town (scenario editor only). }; -/** Widgets of the WC_FOUND_TOWN. */ +/** Widgets of the #FoundTownWindow class. */ enum TownFoundingWidgets { WID_TF_NEW_TOWN, ///< Create a new town. WID_TF_RANDOM_TOWN, ///< Randomly place a town. |