mirror of https://github.com/OpenTTD/OpenTTD
(svn r7415) -Codechange: Don't use typedef enum for simple widget enumerators when we will never use
their type anyways.release/0.5
parent
5b9f884cd0
commit
5dc75d233a
|
@ -23,7 +23,7 @@
|
||||||
#include "strings.h"
|
#include "strings.h"
|
||||||
|
|
||||||
|
|
||||||
typedef enum BuildVehicleWidgets {
|
enum BuildVehicleWidgets {
|
||||||
BUILD_VEHICLE_WIDGET_CLOSEBOX = 0,
|
BUILD_VEHICLE_WIDGET_CLOSEBOX = 0,
|
||||||
BUILD_VEHICLE_WIDGET_CAPTION,
|
BUILD_VEHICLE_WIDGET_CAPTION,
|
||||||
BUILD_VEHICLE_WIDGET_SORT_ASSENDING_DESCENDING,
|
BUILD_VEHICLE_WIDGET_SORT_ASSENDING_DESCENDING,
|
||||||
|
@ -35,7 +35,7 @@ typedef enum BuildVehicleWidgets {
|
||||||
BUILD_VEHICLE_WIDGET_BUILD,
|
BUILD_VEHICLE_WIDGET_BUILD,
|
||||||
BUILD_VEHICLE_WIDGET_RENAME,
|
BUILD_VEHICLE_WIDGET_RENAME,
|
||||||
BUILD_VEHICLE_WIDGET_RESIZE,
|
BUILD_VEHICLE_WIDGET_RESIZE,
|
||||||
} BuildVehicleWidget;
|
};
|
||||||
|
|
||||||
static const Widget _build_vehicle_widgets[] = {
|
static const Widget _build_vehicle_widgets[] = {
|
||||||
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW },
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW },
|
||||||
|
|
|
@ -559,7 +559,7 @@ static const WindowDesc _select_player_face_desc = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Names of the widgets. Keep them in the same order as in the widget array */
|
/* Names of the widgets. Keep them in the same order as in the widget array */
|
||||||
typedef enum PlayerCompanyWindowWidgets {
|
enum PlayerCompanyWindowWidgets {
|
||||||
PCW_WIDGET_CLOSEBOX = 0,
|
PCW_WIDGET_CLOSEBOX = 0,
|
||||||
PCW_WIDGET_CAPTION,
|
PCW_WIDGET_CAPTION,
|
||||||
PCW_WIDGET_FACE,
|
PCW_WIDGET_FACE,
|
||||||
|
@ -572,7 +572,7 @@ typedef enum PlayerCompanyWindowWidgets {
|
||||||
PCW_WIDGET_BUY_SHARE,
|
PCW_WIDGET_BUY_SHARE,
|
||||||
PCW_WIDGET_SELL_SHARE,
|
PCW_WIDGET_SELL_SHARE,
|
||||||
PCW_WIDGET_COMPANY_PASSWORD,
|
PCW_WIDGET_COMPANY_PASSWORD,
|
||||||
} PlayerCompanyWindowWidget;
|
};
|
||||||
|
|
||||||
static const Widget _player_company_widgets[] = {
|
static const Widget _player_company_widgets[] = {
|
||||||
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include "date.h"
|
#include "date.h"
|
||||||
#include "strings.h"
|
#include "strings.h"
|
||||||
|
|
||||||
typedef enum BuildTrainWidgets {
|
enum BuildTrainWidgets {
|
||||||
BUILD_TRAIN_WIDGET_CLOSEBOX = 0,
|
BUILD_TRAIN_WIDGET_CLOSEBOX = 0,
|
||||||
BUILD_TRAIN_WIDGET_CAPTION,
|
BUILD_TRAIN_WIDGET_CAPTION,
|
||||||
BUILD_TRAIN_WIDGET_SORT_ASCENDING_DESCENDING,
|
BUILD_TRAIN_WIDGET_SORT_ASCENDING_DESCENDING,
|
||||||
|
@ -36,7 +36,7 @@ typedef enum BuildTrainWidgets {
|
||||||
BUILD_TRAIN_WIDGET_BUILD,
|
BUILD_TRAIN_WIDGET_BUILD,
|
||||||
BUILD_TRAIN_WIDGET_RENAME,
|
BUILD_TRAIN_WIDGET_RENAME,
|
||||||
BUILD_TRAIN_WIDGET_RESIZE,
|
BUILD_TRAIN_WIDGET_RESIZE,
|
||||||
} BuildTrainWidget;
|
};
|
||||||
|
|
||||||
static const Widget _new_rail_vehicle_widgets[] = {
|
static const Widget _new_rail_vehicle_widgets[] = {
|
||||||
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
{ WWT_CLOSEBOX, RESIZE_NONE, 14, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
|
||||||
|
|
Loading…
Reference in New Issue