Sat, 30 Dec 2006 21:41:15 +0000(svn r7657) -Fix (r6291): 'Goto Depot' did not work for helicopters going to an airport without depot (mart3p).
rubidium [Sat, 30 Dec 2006 21:41:15 +0000] rev 5689
(svn r7657) -Fix (r6291): 'Goto Depot' did not work for helicopters going to an airport without depot (mart3p).

Sat, 30 Dec 2006 18:21:33 +0000(svn r7654) WebTranslator2 update to 2006-12-30 19:20:49
miham [Sat, 30 Dec 2006 18:21:33 +0000] rev 5688
(svn r7654) WebTranslator2 update to 2006-12-30 19:20:49
american - 1 fixed by WhiteRabbit (1)
bulgarian - 5 fixed by kokobongo (5)
estonian - 3 fixed, 2 deleted, 95 changed by kristjans (100)
italian - 1 fixed by sidew (1)
norwegian - 3 fixed by oletk (3)
polish - 2 fixed, 2 changed by meush (4)
portuguese - 1 fixed by izhirahider (1)
russian - 1 fixed by HMage (1)
spanish - 3 fixed by eusebio (3)
turkish - 3 fixed by jnmbk (3)

Sat, 30 Dec 2006 11:57:52 +0000(svn r7642) -Codechange: unify all the different locations where the animation state is stored into a single location.
rubidium [Sat, 30 Dec 2006 11:57:52 +0000] rev 5687
(svn r7642) -Codechange: unify all the different locations where the animation state is stored into a single location.

Sat, 30 Dec 2006 11:51:37 +0000(svn r7641) -Codechange: remove the last direct map accesses from industry_cmd.
rubidium [Sat, 30 Dec 2006 11:51:37 +0000] rev 5686
(svn r7641) -Codechange: remove the last direct map accesses from industry_cmd.

Sat, 30 Dec 2006 11:41:54 +0000(svn r7640) -Codechange: move a table from industry_cmd.c to table/industry_land
rubidium [Sat, 30 Dec 2006 11:41:54 +0000] rev 5685
(svn r7640) -Codechange: move a table from industry_cmd.c to table/industry_land
-Codechange: add a reference to the industry GFX enum and some comments to the tables
-Codechange: remove some magic numbers

Sat, 30 Dec 2006 11:28:26 +0000(svn r7639) -Fix: FS#487 Changed music/qtmidi.c to not use functions deprecated by Apple (pvz)
bjarni [Sat, 30 Dec 2006 11:28:26 +0000] rev 5684
(svn r7639) -Fix: FS#487 Changed music/qtmidi.c to not use functions deprecated by Apple (pvz)

Sat, 30 Dec 2006 01:52:09 +0000(svn r7638) -Codechange: Remove special window ShowJoinStatusWindowAfterJoin and shuffle around
Darkvater [Sat, 30 Dec 2006 01:52:09 +0000] rev 5683
(svn r7638) -Codechange: Remove special window ShowJoinStatusWindowAfterJoin and shuffle around
some code for SetupColorsAndInitialWindow. Because we know that after a successful
load all windows are removed we can setup default windows in this function, and
show ShowJoinStatusWindow in PACKET_SERVER_MAP.
-Setup the global _network_join_status for ShowJoinStatusWindow in the only two
places where the function is called, instead of inside it.
-Turn the join status window into a modal window of the network window so it
stays on top.

Sat, 30 Dec 2006 01:17:53 +0000(svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
Darkvater [Sat, 30 Dec 2006 01:17:53 +0000] rev 5682
(svn r7637) -Codechange: Change ShowQueryString to use a window pointer as a parent. If the
query has no parent (eg give money, rename waypoint), the global function
HandleOnEditText is used.

Sat, 30 Dec 2006 01:14:00 +0000(svn r7636) -Cleanup: Remove unused window classes (sorry WC-mess) and use sizeof(array) instead
Darkvater [Sat, 30 Dec 2006 01:14:00 +0000] rev 5681
(svn r7636) -Cleanup: Remove unused window classes (sorry WC-mess) and use sizeof(array) instead
of X * sizeof(array[0])

Sat, 30 Dec 2006 01:08:12 +0000(svn r7635) -Fix (r7618, r7621): Guard against recursive deletion. It is possible that when a
Darkvater [Sat, 30 Dec 2006 01:08:12 +0000] rev 5680
(svn r7635) -Fix (r7618, r7621): Guard against recursive deletion. It is possible that when a
parent window is deleted it deletes its child (always) and in turn, through some
code the child initiates the deletion of the parent which, if not guarded
against, deletes the child and so on...