Darkvater [Sat, 13 Jan 2007 15:50:36 +0000] rev 5893
(svn r8101) -Fix (runknown): Plug potential memleaks when calling UnInitWindowSystem. The function directly deleted all windows instead of calling their respective deallocators which could then in turn any used memory.
KUDr [Sat, 13 Jan 2007 15:24:31 +0000] rev 5892
(svn r8100) -Propchange: EOL style changed to LF for /projects/generate
KUDr [Sat, 13 Jan 2007 15:22:36 +0000] rev 5891
(svn r8099) -Fix (r8092): source.list updated to reflect move of header files (thanks stillunknown). vcproj files updated too (thanks glx)
Darkvater [Sat, 13 Jan 2007 15:00:40 +0000] rev 5890
(svn r8098) -Fix (r6964): For editboxen, always fill the background with black, and not only after a valid call to FillDrawPixelInfo. This solves some graphics glitches with background widget-colour showing through on frequent redraws.
tron [Sat, 13 Jan 2007 15:00:16 +0000] rev 5889
(svn r8097) Replace strlen() {==,!=,>} 0 by the more concise {,!}StrEmpty(). Additionally the test takes O(1) instead of O(n) now
Darkvater [Sat, 13 Jan 2007 14:48:47 +0000] rev 5888
(svn r8096) -Codechange: Invert the check if you are allowed to clear a road tile so there are not so many negations (too confusing) and added some comments to further clarify what happens.
KUDr [Sat, 13 Jan 2007 14:43:46 +0000] rev 5887
(svn r8095) -Codechange: stuff that is not related to HAL moved from hal.h to gfx.h
Darkvater [Sat, 13 Jan 2007 14:01:05 +0000] rev 5886
(svn r8094) -Feature/Fix (r7523): Show the activated status of the GRF list after pressing 'apply'
in the newgrf window, instead of the local list.
Darkvater [Sat, 13 Jan 2007 13:47:57 +0000] rev 5885
(svn r8093) -Codechange: Add a function to get a string representation of an MD5SUM and use it.
KUDr [Sat, 13 Jan 2007 13:33:36 +0000] rev 5884
(svn r8092) -Codechange: header files with miscellaneous template classes (smart pointers, blob, array, hashtable, etc.) moved from src/yapf to src/misc as they can now be used anywhere.