summaryrefslogtreecommitdiff
path: root/src/statusbar_gui.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-01-09 23:49:46 +0000
committersmatz <smatz@openttd.org>2009-01-09 23:49:46 +0000
commitc3839648f75ebfdca2f7d95b7d6a2b29445ab1c2 (patch)
tree712f8c2ff27fa7e994c39edd3a66caff3d1f36ce /src/statusbar_gui.h
parentdc1f1664fd157e4e6d98159f2dee66d63e34e2a0 (diff)
downloadopenttd-c3839648f75ebfdca2f7d95b7d6a2b29445ab1c2.tar.xz
(svn r14948) -Codechange: enumification and more comments in the statusbar code
Diffstat (limited to 'src/statusbar_gui.h')
-rw-r--r--src/statusbar_gui.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/statusbar_gui.h b/src/statusbar_gui.h
index 0c3f0eb21..d14800bc4 100644
--- a/src/statusbar_gui.h
+++ b/src/statusbar_gui.h
@@ -5,13 +5,12 @@
#ifndef STATUSBAR_GUI_H
#define STATUSBAR_GUI_H
-enum StatusBarInvalidate
-{
- SBI_SAVELOAD_START,
- SBI_SAVELOAD_FINISH,
- SBI_SHOW_TICKER,
- SBI_SHOW_REMINDER,
- SBI_NEWS_DELETED,
+enum StatusBarInvalidate {
+ SBI_SAVELOAD_START, ///< started saving
+ SBI_SAVELOAD_FINISH, ///< finished saving
+ SBI_SHOW_TICKER, ///< start scolling news
+ SBI_SHOW_REMINDER, ///< show a reminder (dot on the right side of the statusbar)
+ SBI_NEWS_DELETED, ///< abort current news display (active news were deleted)
SBI_END
};