Tue, 05 Dec 2006 11:59:28 +0000(svn r7369) -Cleanup: Some coding style, usage of increaseIndex and decreaseIndex to loop through the
Darkvater [Tue, 05 Dec 2006 11:59:28 +0000] rev 5245
(svn r7369) -Cleanup: Some coding style, usage of increaseIndex and decreaseIndex to loop through the
fifo-array-buffer, typo's.

Tue, 05 Dec 2006 11:51:23 +0000(svn r7368) -Fix: [FS#332] Vehicle Deletion Crash [News Window Related?] (r3757).
Darkvater [Tue, 05 Dec 2006 11:51:23 +0000] rev 5244
(svn r7368) -Fix: [FS#332] Vehicle Deletion Crash [News Window Related?] (r3757).

Tue, 05 Dec 2006 11:13:22 +0000(svn r7367) -Codechange: prevent adding files where the GRF ID is already in the list
peter1138 [Tue, 05 Dec 2006 11:13:22 +0000] rev 5243
(svn r7367) -Codechange: prevent adding files where the GRF ID is already in the list

Tue, 05 Dec 2006 09:19:14 +0000(svn r7366) -Fix: Out of bounds widget access when accessing orders window of other players.
Darkvater [Tue, 05 Dec 2006 09:19:14 +0000] rev 5242
(svn r7366) -Fix: Out of bounds widget access when accessing orders window of other players.

Mon, 04 Dec 2006 20:27:53 +0000(svn r7363) -Fix (r7357): Update count of NewGRFs when adding an file
peter1138 [Mon, 04 Dec 2006 20:27:53 +0000] rev 5241
(svn r7363) -Fix (r7357): Update count of NewGRFs when adding an file

Mon, 04 Dec 2006 18:57:09 +0000(svn r7362) -Fix (r7337): Free the freetype face after any possible error. For win32 do not use the
Darkvater [Mon, 04 Dec 2006 18:57:09 +0000] rev 5240
(svn r7362) -Fix (r7337): Free the freetype face after any possible error. For win32 do not use the
last font in the registry if no suitable font is found.

Mon, 04 Dec 2006 16:14:10 +0000(svn r7360) -Cleanup r7357: Update STR_NEWGRF_FILENAME and STR_NEWGRF_GRF_ID in all languages
glx [Mon, 04 Dec 2006 16:14:10 +0000] rev 5239
(svn r7360) -Cleanup r7357: Update STR_NEWGRF_FILENAME and STR_NEWGRF_GRF_ID in all languages

Mon, 04 Dec 2006 14:30:18 +0000(svn r7358) -Codechange: add newgrf_gui.c to MS project files
peter1138 [Mon, 04 Dec 2006 14:30:18 +0000] rev 5238
(svn r7358) -Codechange: add newgrf_gui.c to MS project files

Mon, 04 Dec 2006 14:27:54 +0000(svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.
peter1138 [Mon, 04 Dec 2006 14:27:54 +0000] rev 5237
(svn r7357) -Codechange: new NewGRF set up window which allows modification of NewGRF settings.

Mon, 04 Dec 2006 13:57:04 +0000(svn r7356) -Codechange: replace 'for (i = 0, wi = w->widget; wi->type != WWT_LAST; i++, wi++)' type for loops with 'for (i = 0; i < w->window_count; i++) { wi = &w->widget[i];'-type for loops for better readability.
rubidium [Mon, 04 Dec 2006 13:57:04 +0000] rev 5236
(svn r7356) -Codechange: replace 'for (i = 0, wi = w->widget; wi->type != WWT_LAST; i++, wi++)' type for loops with 'for (i = 0; i < w->window_count; i++) { wi = &w->widget[i];'-type for loops for better readability.
-Codechange: use IsWindowWidget(Disabled|Hidden) in favor of IsWidget(Disabled|Hidden).