changeset 18713:083d305f86e1 draft

(svn r23561) -Codechange: forgot to document 1 widget enum
author truebrain <truebrain@openttd.org>
date Fri, 16 Dec 2011 19:08:39 +0000
parents 4ebf955c5ce6
children 002c298a2a96
files src/widgets/graph_widget.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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. */