Changeset - r18703:9aff25007643
[Not reviewed]
master
0 1 0
truebrain - 13 years ago 2011-12-16 19:08:39
truebrain@openttd.org
(svn r23561) -Codechange: forgot to document 1 widget enum
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/widgets/graph_widget.h
Show inline comments
 
@@ -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. */
0 comments (0 inline, 0 general)