Codechange: Set storage type of widget enums to WidgetID.

This commit is contained in:
Peter Nelson
2023-12-29 21:15:25 +00:00
committed by Peter Nelson
parent a0dfb76e34
commit 268e512fb8
60 changed files with 120 additions and 120 deletions

View File

@@ -11,7 +11,7 @@
#define WIDGETS_VEHICLE_WIDGET_H
/** Widgets of the #VehicleViewWindow class. */
enum VehicleViewWidgets {
enum VehicleViewWidgets : WidgetID {
WID_VV_CAPTION, ///< Caption of window.
WID_VV_VIEWPORT, ///< Viewport widget.
WID_VV_START_STOP, ///< Start or stop this vehicle, and show information about the current state.
@@ -31,7 +31,7 @@ enum VehicleViewWidgets {
};
/** Widgets of the #RefitWindow class. */
enum VehicleRefitWidgets {
enum VehicleRefitWidgets : WidgetID {
WID_VR_CAPTION, ///< Caption of window.
WID_VR_VEHICLE_PANEL_DISPLAY, ///< Display with a representation of the vehicle to refit.
WID_VR_SHOW_HSCROLLBAR, ///< Selection widget for the horizontal scrollbar.
@@ -44,7 +44,7 @@ enum VehicleRefitWidgets {
};
/** Widgets of the #VehicleDetailsWindow class. */
enum VehicleDetailsWidgets {
enum VehicleDetailsWidgets : WidgetID {
WID_VD_CAPTION, ///< Caption of window.
WID_VD_TOP_DETAILS, ///< Panel with generic details.
WID_VD_INCREASE_SERVICING_INTERVAL, ///< Increase the servicing interval.
@@ -61,7 +61,7 @@ enum VehicleDetailsWidgets {
};
/** Widgets of the #VehicleListWindow class. */
enum VehicleListWidgets {
enum VehicleListWidgets : WidgetID {
WID_VL_CAPTION, ///< Caption of window (for non shared orders windows).
WID_VL_CAPTION_SHARED_ORDERS, ///< Caption of window (for shared orders windows).
WID_VL_CAPTION_SELECTION, ///< Selection for caption.