From f8944cc9b3fb846ddd8d22bc5601bfeec26c5d6b Mon Sep 17 00:00:00 2001 From: frosch Date: Sat, 9 May 2009 14:23:19 +0000 Subject: (svn r16261) -Fix (r16260): Replace a space with a newline and a tab. (thanks smatz) --- src/vehicle_base.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/vehicle_base.h b/src/vehicle_base.h index ca6666118..3805d7550 100644 --- a/src/vehicle_base.h +++ b/src/vehicle_base.h @@ -603,7 +603,8 @@ public: * Increments cur_order_index, keeps care of the wrap-around and invalidates the GUI. * Note: current_order is not invalidated. */ - void IncrementOrderIndex() { + void IncrementOrderIndex() + { this->cur_order_index++; if (this->cur_order_index >= this->GetNumOrders()) this->cur_order_index = 0; InvalidateVehicleOrder(this, 0); -- cgit v1.2.3-54-g00ecf