]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
added and documented wxProcess::Is{Input|Error}Available() and IsInputOpened
[wxWidgets.git] / docs / changes.txt
index 9894aa91b4d80df8f5c8d9574193c7a08f447f29..b4528c53baa078d37e0016748c45824ae515e039 100644 (file)
@@ -96,6 +96,10 @@ All (GUI):
   for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
   and GetCount() instead of Number() in many classes
 
+- wxCmdLineParser does not use wxLog to output messages anymore.
+  to obtain the previous behaviour, add
+  wxMessageOutput::Set(new wxMessageOutputLog); to your program
+  (you will need to #include <wx/msgout.h>)
 
 wxMSW:
 
@@ -223,6 +227,7 @@ All (GUI):
 wxMSW:
 
 - small appearance fixes for native look under Windows XP
+- fixed multiple bugs in wxExecute() with IO redirection
 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
 - huge (40*) speed up in wxMask::Create()
 - changing wxWindows styles also changes the underlying Windows window style
@@ -252,12 +257,9 @@ wxMSW:
 - multiple events avoided in wxComboBox
 - tooltip asserts avoided for read-only wxComboBox
 - fixed a race condition during a thread exit and a join
-- fixed a condition where a thread can hang during
-  message/event processing
+- fixed a condition where a thread can hang during message/event processing
 - increased space between wxRadioBox label and first radio button
 - don't fail to register remaining window classes if one fails to register
-- set window proc for non-control windows to avoid problems
-  with multiple wxWindows apps running simultaneously
 
 wxGTK: