summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-12-16 19:08:39 +0000
committertruebrain <truebrain@openttd.org>2011-12-16 19:08:39 +0000
commit1d4eeb063e6820a1f786f725ecaa3b304f1c75d8 (patch)
tree2e6e28ac6323fdebc193e96454385f086962a434 /src
parent20a7276510ace539845f5f6a45132816a41afa5a (diff)
downloadopenttd-1d4eeb063e6820a1f786f725ecaa3b304f1c75d8.tar.xz
(svn r23561) -Codechange: forgot to document 1 widget enum
Diffstat (limited to 'src')
-rw-r--r--src/widgets/graph_widget.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/widgets/graph_widget.h b/src/widgets/graph_widget.h
index 95a67446f..9a7e347a4 100644
--- a/src/widgets/graph_widget.h
+++ b/src/widgets/graph_widget.h
@@ -16,10 +16,10 @@
/** Widgets of the WC_GRAPH_LEGEND. */
enum GraphLegendWidgets {
- WID_GL_BACKGROUND,
+ WID_GL_BACKGROUND, ///< Background of the window.
- WID_GL_FIRST_COMPANY,
- WID_GL_LAST_COMPANY = WID_GL_FIRST_COMPANY + MAX_COMPANIES - 1,
+ WID_GL_FIRST_COMPANY, ///< First company in the legend.
+ WID_GL_LAST_COMPANY = WID_GL_FIRST_COMPANY + MAX_COMPANIES - 1, ///< Last company in the legend.
};
/** Widgets of the WC_OPERATING_PROFIT / WC_DELIVERED_CARGO / WC_COMPANY_VALUE / WC_INCOME_GRAPH. */