Mon, 26 Feb 2007 22:25:18 +0000(svn r8911) -Cleanup: fixup comments about the RoadVehicleStates and remove two unused enums.
rubidium [Mon, 26 Feb 2007 22:25:18 +0000] rev 6487
(svn r8911) -Cleanup: fixup comments about the RoadVehicleStates and remove two unused enums.

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 6486
(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 6485
(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 6484
(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 6483
(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 6482
(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 6481
(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 6480
(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 6479
(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 6478
(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.