(svn r23539) -Codechange: prevent conflict between widget naming of (vehicle) depots and vehicle details

This commit is contained in:
rubidium
2011-12-16 16:57:56 +00:00
parent 44d6bb55a0
commit 5e11e5d77b
2 changed files with 118 additions and 118 deletions

View File

@@ -13,25 +13,25 @@
#define WIDGETS_DEPOT_WIDGET_H
/** Widgets of the WC_VEHICLE_DEPOT. */
enum VehicleDepotWidgets {
WID_VD_CAPTION, ///< Caption of window.
WID_VD_SELL, ///< Sell button.
WID_VD_SHOW_SELL_CHAIN, ///< Show sell chain panel.
WID_VD_SELL_CHAIN, ///< Sell chain button.
WID_VD_SELL_ALL, ///< Sell all button.
WID_VD_AUTOREPLACE, ///< Autoreplace button.
WID_VD_MATRIX, ///< Matrix of vehicles.
WID_VD_V_SCROLL, ///< Vertical scrollbar.
WID_VD_SHOW_H_SCROLL, ///< Show horizontal scrollbar panel.
WID_VD_H_SCROLL, ///< Horizontal scrollbar.
WID_VD_BUILD, ///< Build button.
WID_VD_CLONE, ///< Clone button.
WID_VD_LOCATION, ///< Location button.
WID_VD_SHOW_RENAME, ///< Show rename panel.
WID_VD_RENAME, ///< Rename button.
WID_VD_VEHICLE_LIST, ///< List of vehicles.
WID_VD_STOP_ALL, ///< Stop all button.
WID_VD_START_ALL, ///< Start all button.
enum DepotWidgets {
WID_D_CAPTION, ///< Caption of window.
WID_D_SELL, ///< Sell button.
WID_D_SHOW_SELL_CHAIN, ///< Show sell chain panel.
WID_D_SELL_CHAIN, ///< Sell chain button.
WID_D_SELL_ALL, ///< Sell all button.
WID_D_AUTOREPLACE, ///< Autoreplace button.
WID_D_MATRIX, ///< Matrix of vehicles.
WID_D_V_SCROLL, ///< Vertical scrollbar.
WID_D_SHOW_H_SCROLL, ///< Show horizontal scrollbar panel.
WID_D_H_SCROLL, ///< Horizontal scrollbar.
WID_D_BUILD, ///< Build button.
WID_D_CLONE, ///< Clone button.
WID_D_LOCATION, ///< Location button.
WID_D_SHOW_RENAME, ///< Show rename panel.
WID_D_RENAME, ///< Rename button.
WID_D_VEHICLE_LIST, ///< List of vehicles.
WID_D_STOP_ALL, ///< Stop all button.
WID_D_START_ALL, ///< Start all button.
};
#endif /* WIDGETS_DEPOT_WIDGET_H */