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-03-22 15:37 VZ, revision 52700

no real changes, just added a default value for the command used by exec with redirect to avoid having to type it every time

2008-03-22 15:02 VS, revision 52699

documented SelectAll()

2008-03-22 14:57 VS, revision 52698

upported wxHelpProvider docs fixes from r52197; minor tweaks to Doxygen docs of other classes in cshelp.h

2008-03-22 14:55 VZ, revision 52697

no real changes, just small cleanup after last few revisions

2008-03-22 14:50 VZ, revision 52696

refactored common code from XXX_EndProcessDetect in wxGTK[12] and wxMac/wxCocoa into wxHandleProcessTermination itself; also removed code dealing with negative pids as we don't use them any more

2008-03-22 14:49 VZ, revision 52695

don't show more than 20 lines of redirected IO, just 10 first and last ones is enough to check that the code works correctly

2008-03-22 14:43 VS, revision 52694

documented that Freeze and Thaw are now recursive

2008-03-22 14:15 VZ, revision 52693

get rid of traits functions unnecessary now that wxExecute() works in both base and GUI ports

2008-03-22 14:10 VZ, revision 52692

fixed IO redirection to work in wxExecute() in console applications (including the case when the child process outputs more than pipe buffer size) by using wxSelectDispatcher for multiplexing

2008-03-22 12:12 VZ, revision 52691

use wxGUIAppTraits::WaitForChild() in wxMac too

2008-03-22 12:11 VZ, revision 52690

fix warnings about unused parameters/variables in release build

2008-03-22 12:06 FM, revision 52689

use wx-style header and commets; fix indentation to be 4 spaces; move Doxygen comments in a new interface header; deprecate SetBrowser() in favour of SetViewer()

2008-03-22 11:55 VS, revision 52688

fixes to Freeze/Thawn when the window is shown or hidden in between Freeze and Thaw

2008-03-22 11:47 VS, revision 52687

fixed spurious debug message about unexpected focus change when wx focus changed more than once before event loop iteration

2008-03-22 04:19 VZ, revision 52681

make wxSelectDispatcher ctor public, it can be useful to create it in places other than wxFDIODispatcher

2008-03-22 04:08 VZ, revision 52679

correct the REDIRECT_COMMAND definition for Unix

2008-03-22 03:50 VZ, revision 52678

return bool from wxStreamTempInputBuffer::Update() indicating if anything was done; don't sleep in wxExecute() if IO is coming

2008-03-22 03:48 VZ, revision 52677

extracted GUI-specific part of utilsunx.cpp to a new unix/apptraits.cpp file and don't include utilsunx.cpp in both base and GUI libraries now so that we can get rid of BASE_AND_GUI_UNIX_SRC in files.bkl entirely

2008-03-22 03:46 VZ, revision 52676

extracted GUI-specific part of utilsunx.cpp to a new unix/apptraits.cpp file and don't include utilsunx.cpp in both base and GUI libraries now so that we can get rid of BASE_AND_GUI_UNIX_SRC in files.bkl entirely

2008-03-22 03:25 VZ, revision 52674
  • D /wxWidgets/trunk/src/unix/baseunix.cpp

unused any more (should have been part of r52667)

2008-03-22 03:15 VZ, revision 52673

rename classes use by generic wxSpinCtrl implementation to have "Generic" suffix to avoid conflicts with the classes with the same names in wxMac

2008-03-22 03:13 VZ, revision 52672

add comparison operators for wxPen/BrushStyle and wxSOLID/... constants to avoid warnings in the existing code using such comparisons

2008-03-22 03:06 VZ, revision 52671

added wxWindowDisabler ctor for conditionally disabling all windows and use it in WaitForChild()

2008-03-22 02:58 VZ, revision 52670

more compilation fixes after pen/brush styles changes

2008-03-22 00:07 VZ, revision 52667

replace wxAddProcessCallback() with wxAppTraits::AddProcessCallback() to fix linking problems in Unix ports; also reduce code duplication between GUI and base versions making src/unix/baseunix.cpp unnecessary any longer