matthijs [Wed, 23 Aug 2006 15:30:03 +0000] rev 4360
 
(svn r6068) -Codechange: Switch PNG and BMP priority for screenshots. This ensures PNG is used by default when available. (hylje)
miham [Wed, 23 Aug 2006 13:55:56 +0000] rev 4359
 
(svn r6064) WebTranslator2 update to 2006-08-23 15:55:27
french     - 5 fixed by belugas (4), glx (1)
german     - 26 fixed, 5 changed by chu (31)
turkish    - 23 fixed by jnmbk (23)
glx [Tue, 22 Aug 2006 22:59:42 +0000] rev 4358
 
(svn r6059) -Fix(r6049): FOR_ALL was not use to not skip invalid items, so really don't skip invalid items :)
truelight [Tue, 22 Aug 2006 21:17:19 +0000] rev 4357
 
(svn r6058) -Fix: Get(Industry|Town)ArraySize could never return 0
  Note: _total_towns and _total_industries willb e removed soon, so this 'hack' is okay, for now ;)
truelight [Tue, 22 Aug 2006 21:14:45 +0000] rev 4356
 
(svn r6057) -Codechange: made a function GetRandomXXX, that _always_ returns a valid XXX, unless there are none to pick from. Then NULL is returned.
truelight [Tue, 22 Aug 2006 20:56:08 +0000] rev 4355
 
(svn r6056) -Codechange: don't use a loop what can be done with a simple wrapper
truelight [Tue, 22 Aug 2006 20:41:26 +0000] rev 4354
 
(svn r6055) -Codechange: added GetXXXArraySize, which returns HighestID + 1 (or, will do that).
  It isn't the best name, but we couldn't find any better.
  This unifies the pool-system even more.
tron [Tue, 22 Aug 2006 20:39:18 +0000] rev 4353
 
(svn r6054) Change the sign sorter in a similar way as the other sorters: Remember a list of pointers to signs instead of a list of SignIDs - This removes a layer of indirection
Also make the sign list static
truelight [Tue, 22 Aug 2006 18:15:17 +0000] rev 4352
 
(svn r6053) -Codechange: renamed all IsXXXIndex to IsValidXXXID
-Codechange: IsValidXXXID now also checks if XXX is really valid, not if the number is within range
  Both changes again in preperation of the new mem-pool system, which requires this.
  IsValidXXXID is not a bit less pretty, but that will be cleaned up after the new mem-pool system
truelight [Tue, 22 Aug 2006 17:13:49 +0000] rev 4351
 
(svn r6052) -Codechange: change OrderType (order->type) in a typedef
-Codechange: renamed DeleteDestinationFromVehicleOrder to RemoveOrderFromAllVehicles to reflect his function better
-Codechange: changed the params of RemoveOrderFromAllVehicles, to avoid unneeded variable-creation