# HG changeset patch # User frosch # Date 2009-05-09 14:23:19 # Node ID a2867b8032e2a210dc5b68d5a1f83cf7992f33ad # Parent e9322118cf50edc10a32589b43321753143bac0e (svn r16261) -Fix (r16260): Replace a space with a newline and a tab. (thanks smatz) diff --git a/src/vehicle_base.h b/src/vehicle_base.h --- 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);