diff options
author | truebrain <truebrain@openttd.org> | 2011-12-16 18:21:13 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2011-12-16 18:21:13 +0000 |
commit | e2726ca3f18c41c0ff58d1046374a0d8bbf733d0 (patch) | |
tree | 5a69b58a410b76ce45607888d0dee1a12b633bc7 /src/widgets/statusbar_widget.h | |
parent | 9266bde593b359d1dd999a3c84f48f3b6981c983 (diff) | |
download | openttd-e2726ca3f18c41c0ff58d1046374a0d8bbf733d0.tar.xz |
(svn r23547) -Codechange: document and rename widgets to be consistent and understandable
Diffstat (limited to 'src/widgets/statusbar_widget.h')
-rw-r--r-- | src/widgets/statusbar_widget.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/statusbar_widget.h b/src/widgets/statusbar_widget.h index 50094f0fa..526aa17f6 100644 --- a/src/widgets/statusbar_widget.h +++ b/src/widgets/statusbar_widget.h @@ -14,9 +14,9 @@ /** Widgets of the WC_STATUS_BAR. */ enum StatusbarWidget { - SBW_LEFT, ///< left part of the statusbar; date is shown there - SBW_MIDDLE, ///< middle part; current news or company name or *** SAVING *** or *** PAUSED *** - SBW_RIGHT, ///< right part; bank balance + WID_S_LEFT, ///< Left part of the statusbar; date is shown there. + WID_S_MIDDLE, ///< Middle part; current news or company name or *** SAVING *** or *** PAUSED ***. + WID_S_RIGHT, ///< Right part; bank balance. }; #endif /* WIDGETS_STATUSBAR_WIDGET_H */ |