summaryrefslogtreecommitdiff
path: root/src/order_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-12-22 19:40:23 +0000
committeralberth <alberth@openttd.org>2009-12-22 19:40:23 +0000
commit7dbc77a1e74be00f520e84fa1605a9ba42a05879 (patch)
treeb114f8aaaa25f3b844ec8321b963fd05731e8a8f /src/order_gui.cpp
parent3d2c126268a6fd23c0009348cd31853b182cf917 (diff)
downloadopenttd-7dbc77a1e74be00f520e84fa1605a9ba42a05879.tar.xz
(svn r18605) -Codechange: Coding style fixes, prevent useless calls to UpdateWidgetSize().
Diffstat (limited to 'src/order_gui.cpp')
-rw-r--r--src/order_gui.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/order_gui.cpp b/src/order_gui.cpp
index 13abe86f1..f148433c1 100644
--- a/src/order_gui.cpp
+++ b/src/order_gui.cpp
@@ -1057,7 +1057,7 @@ public:
break;
case ORDER_WIDGET_NON_STOP:
- if (GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
+ if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
this->OrderClick_Nonstop(-1);
} else {
const Order *o = this->vehicle->GetOrder(this->OrderGetSel());
@@ -1067,7 +1067,7 @@ public:
break;
case ORDER_WIDGET_GOTO:
- if (GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
+ if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
this->OrderClick_Goto(0);
} else {
ShowDropDownMenu(this, this->vehicle->type == VEH_AIRCRAFT ? _order_goto_dropdown_aircraft : _order_goto_dropdown, 0, ORDER_WIDGET_GOTO, 0, 0);
@@ -1075,7 +1075,7 @@ public:
break;
case ORDER_WIDGET_FULL_LOAD:
- if (GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
+ if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
this->OrderClick_FullLoad(-1);
} else {
ShowDropDownMenu(this, _order_full_load_drowdown, this->vehicle->GetOrder(this->OrderGetSel())->GetLoadType(), ORDER_WIDGET_FULL_LOAD, 0, 2);
@@ -1083,7 +1083,7 @@ public:
break;
case ORDER_WIDGET_UNLOAD:
- if (GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
+ if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
this->OrderClick_Unload(-1);
} else {
ShowDropDownMenu(this, _order_unload_drowdown, this->vehicle->GetOrder(this->OrderGetSel())->GetUnloadType(), ORDER_WIDGET_UNLOAD, 0, 8);
@@ -1095,7 +1095,7 @@ public:
break;
case ORDER_WIDGET_SERVICE:
- if (GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
+ if (this->GetWidget<NWidgetLeaf>(widget)->ButtonHit(pt)) {
this->OrderClick_Service(-1);
} else {
ShowDropDownMenu(this, _order_depot_action_dropdown, DepotActionStringIndex(this->vehicle->GetOrder(this->OrderGetSel())), ORDER_WIDGET_SERVICE, 0, 0);