]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/changes.txt
added extra parentheses to wxDynamicCast() to allow using it like wxDynamicCast(foo...
[wxWidgets.git] / docs / changes.txt
index 9bbb2f2f5c5d83b982fafd926451fcfe09accc54..24b4bc9d33437d4981489ed8dbd2b71e44ac7543 100644 (file)
@@ -64,6 +64,10 @@ All (GUI):
   generated at all, so you must call event.Skip() in your OnKeyDown() if
   you want to get OnChar() as well
 
+- in general, the key events sent for the various non ASCII key combinations
+  have been changed to make them consistent over all supported platforms,
+  please see the wxKeyEvent documentation for details
+
 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
   have changed (to fix some unfortunate clashes), please check your code to
   ensure that no tests for wxYES or wxNO are broken: for example, the following
@@ -96,6 +100,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 +231,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,9 +261,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
 
 wxGTK:
 
@@ -276,6 +285,10 @@ wxMotif:
 - improved colour settings return values (Ian Brown)
 - improved border style handling for wxStaticText (Ian Brown)
 - improved toolbar control alignment
+- implemented wxSpinButton
+- implemented wxCheckListBox
+- fixed wxSpinCtrl and wxStaticLine when used with sizers
+- wxStaticBitmap now shows transparent icons correctly
 
 wxHTML: