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):

2009-07-17 20:30 KO, revision 61443

Only load/parse options when run as the main script.

2009-07-17 18:55 VZ, revision 61442

No real changes, just made wxEventLoopManual uncopyable.

2009-07-17 18:52 VZ, revision 61441

No real changes, just refactor wxEventLoop/wxApp::ProcessIdle(). Old code called wxApp::ProcessIdle() from wxEventLoopManualRun::Run() which called wxEventLoop::ProcessIdle() which called wxApp methods from it. In the new version wxEventLoopManualRun::Run() calls wxEventLoopManualRun::ProcessIdle() which calls wxApp::ProcessIdle() which calls other wxApp methods which seems to make more sense and also allows overriding ProcessIdle() in either wxEventLoopManual or wxApp-derived classes.

2009-07-17 16:36 VZ, revision 61440

added wxLB_NO_SB style and implementation for wxMSW (closes #10991)

2009-07-17 16:33 VZ, revision 61439

use the currently active event loop instead of the main one in WakeUpIdle()

2009-07-17 16:30 VZ, revision 61438

remove the event handler being deleted from pending events list (closes #10997)

2009-07-16 14:06 VZ, revision 61436

document wxDCMemory(wxDC*) ctor

2009-07-15 14:36 VZ, revision 61432

fix log target auto creation broken by recent changes

2009-07-14 09:18 JJ, revision 61429

OpenVMS compile support update

2009-07-14 09:14 MW, revision 61428

Update email addresses.

2009-07-13 15:40 VZ, revision 61424

Ensure that component levels map is initialized before it's used (closes #10990).

2009-07-13 15:21 VZ, revision 61423

Make wxLog::EnableLogging() and wxLogNull thread-specific. Disabling logging in a single thread (even the main one) shouldn't disable logs from the background threads which should disable their logging themselves as/if needed.

2009-07-13 13:09 VZ, revision 61422

Add support for thread-specific log targets. A worker thread can now have its own log target which will be used directly by the log functions instead of buffering log output in the main thread; the GUI thread in the thread sample shows how it works.

2009-07-13 08:33 JJ, revision 61421

OpenVMS compile support update

2009-07-13 07:12 SC, revision 61420

backport r61269, fixes #10986

2009-07-12 19:22 VZ, revision 61419

Make critical sections initialization really thread-safe.

2009-07-12 19:10 VZ, revision 61418

Removed another occurrence of previous log critical section (should have been part of r61417).

2009-07-12 19:09 VZ, revision 61417

Removed critical section protecting last repeat counter. It is not needed any longer now that this is only used by wxLog::OnLogInMainThreade() which is only called from the main thread.

2009-07-12 19:02 VZ, revision 61416

Made wxLogXXX() functions thread-safe. They can now be called from any thread and will buffer the messages until the current log target is flushed from the main thread. This makes earlier code to do the same thing specifically for wxLogWindow unnecessary and also allows to use wxLogMessage() in the thread sample instead of using manual logging there.

2009-07-12 19:00 VZ, revision 61415

Added wxVector::swap().

2009-07-12 16:56 VZ, revision 61414

Add component-level filtering to wxLog. Each log message is now associated with its component, "wx" by default for messages generated by wxWidgets and wxLOG_COMPONENT in general (which is empty by default). Each component may have its own log level and they are hierarchical allowing fine configuration of what exactly is logged.

2009-07-12 11:59 JMS, revision 61412

Yet another fix for the colour property 'Custom' entry (get drop-down list index directly from wxOwnerDrawnComboBox)

2009-07-12 10:51 MW, revision 61411

Override email address for Jaakko Salli.

2009-07-12 10:27 SC, revision 61410

backport, fixes #10982

2009-07-12 10:24 SC, revision 61409

better surviving 0 width / height bitmap sizes