Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2008-10-31 01:22 BP, revision 56606

Reviewed some g* interface headers.

2008-10-30 23:23 VZ, revision 56604

disable a correct test which VC6 just doesn't want to grok (hopefully last buildbot error?)

2008-10-30 23:22 VZ, revision 56603

for some reason having int/size_t assertEquals() overload is not always enough for VC6, so provide both unsigned int/long overloads instead and rely on size_t being one of them

2008-10-30 23:04 VZ, revision 56602

fix linking problems due to MSVC implicitly considering template classes specializations used as base classes DLL-exported even though it doesn't actually export them when building the DLL (with or without explicit declspec(dllexport)); also replace wxCharTypeBuffer::NullData with a static function to allow not DLL-exporting this class

2008-10-30 16:54 VZ, revision 56601

attempting to fix VC6 compilation error from buildbot logs

2008-10-30 15:57 VZ, revision 56600

don't use WXDLLIMPEXP_BASE with wx[Sorted]Array_SortFunction, this results in link errors with VC[89] when building a DLL and shouldn't be necessary with any other compilers neither as these classes have only inline methods

2008-10-30 11:22 VS, revision 56599

must close output file before reading back from it

2008-10-30 11:16 FM, revision 56598

set WARN_IF_UNDOCUMENTED to YES; it doesn't introduce new warnings for now but could in future

2008-10-30 11:15 FM, revision 56597

fix typos

2008-10-30 11:14 FM, revision 56596

modernized

2008-10-30 11:11 FM, revision 56595

fixed missing semicolons, as reported by check_syntax.sh

2008-10-30 11:06 FM, revision 56594

added a simple script to detect interface headers with missing semicolons

2008-10-30 10:53 FM, revision 56593

typo fix

2008-10-30 10:39 FM, revision 56592

fixed the error '& may not appear in macro parameter list' reported by running gcc preprocessor

2008-10-30 10:32 FM, revision 56591

fixed the error 'macro parameters must be comma-separated' reported by running gcc preprocessor

2008-10-30 07:25 VS, revision 56590

wxHTML: don't include extra whitespace in table cells

2008-10-30 07:24 VS, revision 56589

wxHTML: don't include extra whitespace in table cells

2008-10-30 00:32 VZ, revision 56588

VC6 compilation fix after last change (thanks buildbot)

2008-10-29 18:58 FM, revision 56587

enable all compat symbols when using gccxml

2008-10-29 18:58 FM, revision 56586

s/FALSE/false

2008-10-29 18:55 FM, revision 56585

moved to appropriate 'protected' sections all functions wrongly placed in 'public' sections

2008-10-29 16:45 VZ, revision 56584

use buffered streams to reduce the number of TCP packets used per IPC command from up to 7 to 1 for reasonably sized payloads, this dramatically (by 150 times for the IPC benchmark on a LAN) increases performance; also centralize all the streams used in a single wxIPCSocketStreams class and allocate only it on the heap instead of doing it for all of the streams

2008-10-29 16:42 VZ, revision 56583

provide ctors allowing to specify the non-default buffer size for buffered streams and wxStreamBuffer itself

2008-10-29 16:30 FM, revision 56582

a few other means to avoid false positives

2008-10-29 16:23 VZ, revision 56581

added wxDocument::AlreadySaved() and use it in OnUpdateFileSave() to ensure that the "Save" menu item is enabled for new documents, even although they're not modified yet (otherwise the standard Ctrl-S key doesn't work in this case which is pretty annoying)