summaryrefslogtreecommitdiff
path: root/src/widgets/rail_widget.h
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2011-12-16 16:23:50 +0000
committertruebrain <truebrain@openttd.org>2011-12-16 16:23:50 +0000
commit98d3f11d45c879b6cb0728c7a77fab349329abe8 (patch)
treeed784007a33a4f0320dbf07ef99b35a060f142f5 /src/widgets/rail_widget.h
parent2aa774e831ad1cb7849c998759449ef777c5c664 (diff)
downloadopenttd-98d3f11d45c879b6cb0728c7a77fab349329abe8.tar.xz
(svn r23529) -Codechange: make all widget enum values unique and make them include the files they need to compile
Diffstat (limited to 'src/widgets/rail_widget.h')
-rw-r--r--src/widgets/rail_widget.h40
1 files changed, 21 insertions, 19 deletions
diff --git a/src/widgets/rail_widget.h b/src/widgets/rail_widget.h
index ebf3b2584..0a56f985f 100644
--- a/src/widgets/rail_widget.h
+++ b/src/widgets/rail_widget.h
@@ -14,21 +14,22 @@
/** Widgets of the WC_BUILD_TOOLBAR (WC_BUILD_TOOLBAR is also used in others). */
enum RailToolbarWidgets {
- RTW_CAPTION,
- RTW_BUILD_NS,
- RTW_BUILD_X,
- RTW_BUILD_EW,
- RTW_BUILD_Y,
- RTW_AUTORAIL,
- RTW_DEMOLISH,
- RTW_BUILD_DEPOT,
- RTW_BUILD_WAYPOINT,
- RTW_BUILD_STATION,
- RTW_BUILD_SIGNALS,
- RTW_BUILD_BRIDGE,
- RTW_BUILD_TUNNEL,
- RTW_REMOVE,
- RTW_CONVERT_RAIL,
+ /* Name starts with RA instead of R, becuase of collision with RoadToolbarWidgets */
+ RATW_CAPTION,
+ RATW_BUILD_NS,
+ RATW_BUILD_X,
+ RATW_BUILD_EW,
+ RATW_BUILD_Y,
+ RATW_AUTORAIL,
+ RATW_DEMOLISH,
+ RATW_BUILD_DEPOT,
+ RATW_BUILD_WAYPOINT,
+ RATW_BUILD_STATION,
+ RATW_BUILD_SIGNALS,
+ RATW_BUILD_BRIDGE,
+ RATW_BUILD_TUNNEL,
+ RATW_REMOVE,
+ RATW_CONVERT_RAIL,
};
/** Widgets of the WC_BUILD_STATION (WC_BUILD_STATION is also used in others). */
@@ -96,10 +97,11 @@ enum BuildSignalWidgets {
/** Widgets of the WC_BUILD_DEPOT (WC_BUILD_DEPOT is also used in others). */
enum BuildRailDepotWidgets {
- BRDW_DEPOT_NE,
- BRDW_DEPOT_SE,
- BRDW_DEPOT_SW,
- BRDW_DEPOT_NW,
+ /* Name starts with BRA instead of BR, becuase of collision with BuildRoadDepotWidgets */
+ BRADW_DEPOT_NE,
+ BRADW_DEPOT_SE,
+ BRADW_DEPOT_SW,
+ BRADW_DEPOT_NW,
};
/** Widgets of the WC_BUILD_DEPOT (WC_BUILD_DEPOT is also used in others). */