summaryrefslogtreecommitdiff
path: root/src/road_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-12-20 19:19:23 +0000
committeralberth <alberth@openttd.org>2010-12-20 19:19:23 +0000
commit1e07f74b1ed5ca63f264dd914bbecd02454d0b23 (patch)
tree3f369346c768393796d9e1e22ad5d973278784a1 /src/road_gui.cpp
parent76658083f8cf9da0246cfbc6603e72ff32e3d390 (diff)
downloadopenttd-1e07f74b1ed5ca63f264dd914bbecd02454d0b23.tar.xz
(svn r21548) -Codechange: Code style, multi line statements should indent two tabs.
Diffstat (limited to 'src/road_gui.cpp')
-rw-r--r--src/road_gui.cpp54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/road_gui.cpp b/src/road_gui.cpp
index 1902123a9..653e41675 100644
--- a/src/road_gui.cpp
+++ b/src/road_gui.cpp
@@ -453,9 +453,9 @@ struct BuildRoadToolbarWindow : Window {
{
this->InitNested(desc, window_number);
this->SetWidgetsDisabledState(true,
- RTW_REMOVE,
- RTW_ONE_WAY,
- WIDGET_LIST_END);
+ RTW_REMOVE,
+ RTW_ONE_WAY,
+ WIDGET_LIST_END);
this->OnInvalidateData();
@@ -470,10 +470,10 @@ struct BuildRoadToolbarWindow : Window {
void OnInvalidateData(int data = 0)
{
this->SetWidgetsDisabledState(!CanBuildVehicleInfrastructure(VEH_ROAD),
- RTW_DEPOT,
- RTW_BUS_STATION,
- RTW_TRUCK_STATION,
- WIDGET_LIST_END);
+ RTW_DEPOT,
+ RTW_BUS_STATION,
+ RTW_TRUCK_STATION,
+ WIDGET_LIST_END);
}
/**
@@ -507,22 +507,22 @@ struct BuildRoadToolbarWindow : Window {
case RTW_ROAD_Y:
case RTW_AUTOROAD:
this->SetWidgetsDisabledState(!this->IsWidgetLowered(clicked_widget),
- RTW_REMOVE,
- RTW_ONE_WAY,
- WIDGET_LIST_END);
+ RTW_REMOVE,
+ RTW_ONE_WAY,
+ WIDGET_LIST_END);
break;
default:
/* When any other buttons than road/station, raise and
* disable the removal button */
this->SetWidgetsDisabledState(true,
- RTW_REMOVE,
- RTW_ONE_WAY,
- WIDGET_LIST_END);
+ RTW_REMOVE,
+ RTW_ONE_WAY,
+ WIDGET_LIST_END);
this->SetWidgetsLoweredState(false,
- RTW_REMOVE,
- RTW_ONE_WAY,
- WIDGET_LIST_END);
+ RTW_REMOVE,
+ RTW_ONE_WAY,
+ WIDGET_LIST_END);
break;
}
}
@@ -558,9 +558,9 @@ struct BuildRoadToolbarWindow : Window {
{
this->RaiseButtons();
this->SetWidgetsDisabledState(true,
- RTW_REMOVE,
- RTW_ONE_WAY,
- WIDGET_LIST_END);
+ RTW_REMOVE,
+ RTW_ONE_WAY,
+ WIDGET_LIST_END);
this->SetWidgetDirty(RTW_REMOVE);
this->SetWidgetDirty(RTW_ONE_WAY);
@@ -638,9 +638,9 @@ struct BuildRoadToolbarWindow : Window {
_place_road_flag = (RoadFlags)((_place_road_flag & RF_DIR_Y) ? (_place_road_flag & 0x07) : (_place_road_flag >> 3));
DoCommandP(start_tile, end_tile, _place_road_flag | (_cur_roadtype << 3) | (_one_way_button_clicked << 5),
- _remove_button_clicked ?
- CMD_REMOVE_LONG_ROAD | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_road) :
- CMD_BUILD_LONG_ROAD | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_road), CcPlaySound1D);
+ _remove_button_clicked ?
+ CMD_REMOVE_LONG_ROAD | CMD_MSG(_road_type_infos[_cur_roadtype].err_remove_road) :
+ CMD_BUILD_LONG_ROAD | CMD_MSG(_road_type_infos[_cur_roadtype].err_build_road), CcPlaySound1D);
break;
case DDSP_BUILD_BUSSTOP:
@@ -969,11 +969,11 @@ struct BuildRoadStationWindow : public PickerWindowBase {
_road_station_picker_orientation = DIAGDIR_END;
}
this->SetWidgetsDisabledState(_cur_roadtype == ROADTYPE_TRAM,
- BRSW_STATION_NE,
- BRSW_STATION_SE,
- BRSW_STATION_SW,
- BRSW_STATION_NW,
- WIDGET_LIST_END);
+ BRSW_STATION_NE,
+ BRSW_STATION_SE,
+ BRSW_STATION_SW,
+ BRSW_STATION_NW,
+ WIDGET_LIST_END);
this->GetWidget<NWidgetCore>(BRSW_CAPTION)->widget_data = _road_type_infos[_cur_roadtype].picker_title[rs];
for (uint i = BRSW_STATION_NE; i < BRSW_LT_OFF; i++) this->GetWidget<NWidgetCore>(i)->tool_tip = _road_type_infos[_cur_roadtype].picker_tooltip[rs];