]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/window.cpp
use margin width after updating it in OnMeasureItem() (see #10452)
[wxWidgets.git] / src / palmos / window.cpp
index 9dd143a633618feb0e22c2c951e111368acbe5df..1298d9a5b1335ad4585716bd5b67233ce5b578cc 100644 (file)
@@ -437,6 +437,7 @@ void wxWindowPalm::Refresh(bool eraseBack, const wxRect *rect)
     WinHandle handle = (WinHandle)GetHWND();
     if(handle)
     {
+#ifdef __WXPALMOS6__
         if(rect)
         {
             RectangleType dirtyRect;
@@ -450,6 +451,10 @@ void wxWindowPalm::Refresh(bool eraseBack, const wxRect *rect)
         {
             WinInvalidateWindow(handle);
         }
+#else // __WXPALMOS5__
+        WinSetActiveWindow (handle);
+#endif
+
     }
 }