Sat, 21 Oct 2006 23:51:02 +0000(svn r6888) - Fix (r6884): Missed a couple of strecpy()s in newgrf text handling
peter1138 [Sat, 21 Oct 2006 23:51:02 +0000] rev 4915
(svn r6888) - Fix (r6884): Missed a couple of strecpy()s in newgrf text handling

Sat, 21 Oct 2006 23:36:43 +0000(svn r6886) -Be anal for the time being about string-wannabe-buffer-overflows
Darkvater [Sat, 21 Oct 2006 23:36:43 +0000] rev 4914
(svn r6886) -Be anal for the time being about string-wannabe-buffer-overflows

Sat, 21 Oct 2006 23:36:06 +0000(svn r6885) - Fix (r1379): List of actions panel in the town authority window went underneath its scrollbar
peter1138 [Sat, 21 Oct 2006 23:36:06 +0000] rev 4913
(svn r6885) - Fix (r1379): List of actions panel in the town authority window went underneath its scrollbar

Sat, 21 Oct 2006 23:31:34 +0000(svn r6884) -Codechange: Add strict bounds checking in string formatting system.
Darkvater [Sat, 21 Oct 2006 23:31:34 +0000] rev 4912
(svn r6884) -Codechange: Add strict bounds checking in string formatting system.
The last parameter should point to the end of the buffer (eg lastof(buf))
Courtesy of Tron.

Sat, 21 Oct 2006 23:08:17 +0000(svn r6882) -Fix r6777: Off by one drawing error for cargo buttons
Darkvater [Sat, 21 Oct 2006 23:08:17 +0000] rev 4911
(svn r6882) -Fix r6777: Off by one drawing error for cargo buttons

Sat, 21 Oct 2006 23:00:27 +0000(svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138)
Darkvater [Sat, 21 Oct 2006 23:00:27 +0000] rev 4910
(svn r6881) -Fix r6874: uint > int to remove signedness warning MSVC (peter1138)

Sat, 21 Oct 2006 22:50:57 +0000(svn r6879) -Codechange: Remove the superflouos argument CharsetFilter parameter from HandleEditBoxKey
Darkvater [Sat, 21 Oct 2006 22:50:57 +0000] rev 4909
(svn r6879) -Codechange: Remove the superflouos argument CharsetFilter parameter from HandleEditBoxKey
as the same information is present in querystr_d->afilter
-Also (&((querystr_d *)&WP(w, querystr_d))->text is the same as &WP(w, querystr_d).text

Sat, 21 Oct 2006 22:38:50 +0000(svn r6878) -Fix r6876 +add network.c, network_client.c
Darkvater [Sat, 21 Oct 2006 22:38:50 +0000] rev 4908
(svn r6878) -Fix r6876 +add network.c, network_client.c

Sat, 21 Oct 2006 22:33:45 +0000(svn r6877) -Fix r6876 +add main_gui.c
Darkvater [Sat, 21 Oct 2006 22:33:45 +0000] rev 4907
(svn r6877) -Fix r6876 +add main_gui.c

Sat, 21 Oct 2006 22:29:14 +0000(svn r6876) -Codechange: Change the naming of _PLAYER in DESTTYPE_PLAYER/NETWORK_ACTION_CHAT_PLAYER
Darkvater [Sat, 21 Oct 2006 22:29:14 +0000] rev 4906
(svn r6876) -Codechange: Change the naming of _PLAYER in DESTTYPE_PLAYER/NETWORK_ACTION_CHAT_PLAYER
to _COMPANY as that is whom you are really addressing to. Also change some variable
names, 'desttype' is confusing if there is also a parameter 'dest', so rename it to
just type.