Mon, 26 Feb 2007 18:25:03 +0000(svn r8908) -Codechange: declaration of DrawBridgeMiddle does not belong in a map accessors header.
rubidium [Mon, 26 Feb 2007 18:25:03 +0000] rev 6160
(svn r8908) -Codechange: declaration of DrawBridgeMiddle does not belong in a map accessors header.

Mon, 26 Feb 2007 00:41:24 +0000(svn r8907) -Fix (r3281): reading from an unitialized variable.
rubidium [Mon, 26 Feb 2007 00:41:24 +0000] rev 6159
(svn r8907) -Fix (r3281): reading from an unitialized variable.

Mon, 26 Feb 2007 00:36:57 +0000(svn r8906) -Feature: translation dependant formatting of dates.
rubidium [Mon, 26 Feb 2007 00:36:57 +0000] rev 6158
(svn r8906) -Feature: translation dependant formatting of dates.

Sun, 25 Feb 2007 14:33:43 +0000(svn r8903) -Regression (r8891): CT_PURCHASE does apply to aircraft overrides...
peter1138 [Sun, 25 Feb 2007 14:33:43 +0000] rev 6157
(svn r8903) -Regression (r8891): CT_PURCHASE does apply to aircraft overrides...

Sun, 25 Feb 2007 11:59:26 +0000(svn r8901) -Fix
tron [Sun, 25 Feb 2007 11:59:26 +0000] rev 6156
(svn r8901) -Fix

Get rid of DECLARE_ENUM_AS_BIT_INDEX(Trackdir, TrackdirBits) and DECLARE_ENUM_AS_BIT_INDEX() altogether

Sun, 25 Feb 2007 11:49:43 +0000(svn r8900) -Fix
tron [Sun, 25 Feb 2007 11:49:43 +0000] rev 6155
(svn r8900) -Fix

Get rid of DECLARE_ENUM_AS_BIT_INDEX(Track, TrackBits)

Sun, 25 Feb 2007 11:36:19 +0000(svn r8899) -Fix
tron [Sun, 25 Feb 2007 11:36:19 +0000] rev 6154
(svn r8899) -Fix

Remove the unused second parameter from GetTileRailType()

Sun, 25 Feb 2007 10:49:13 +0000(svn r8897) -Fix
tron [Sun, 25 Feb 2007 10:49:13 +0000] rev 6153
(svn r8897) -Fix

Change the signature of GetNewVehiclePos():
-void GetNewVehiclePos(const Vehicle *v, GetNewVehiclePosResult *gp);
+GetNewVehiclePosResult GetNewVehiclePos(const Vehicle *v);

Sun, 25 Feb 2007 10:25:25 +0000(svn r8896) -Fix
tron [Sun, 25 Feb 2007 10:25:25 +0000] rev 6152
(svn r8896) -Fix

Most (i.e. 13 of 15) callers of GetNewVehiclePos() do not care for the return and the others can figure it out by inspecting the information returned in struct GetNewVehiclePosResult.
Therefore remove the return value.

Sun, 25 Feb 2007 09:47:46 +0000(svn r8894) -Fix
tron [Sun, 25 Feb 2007 09:47:46 +0000] rev 6151
(svn r8894) -Fix

Slightly simplify the control flow of TrainController()