]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/window_osx.cpp
Removed extraneous semicolons and commas (partly fixes #10456).
[wxWidgets.git] / src / osx / window_osx.cpp
index 55aea5d8151fb0a20fe11f81a7db10078bec1d0e..b9817fbfc108ed1af488756b191a5dcdbbfe0a20 100644 (file)
@@ -964,6 +964,13 @@ void wxWindowMac::DoSetSize(int x, int y, int width, int height, int sizeFlags)
         // TODO: REMOVE
         MacRepositionScrollBars() ; // we might have a real position shift
 
+        if (sizeFlags & wxSIZE_FORCE_EVENT)
+        {
+            wxSizeEvent event( wxSize(width,height), GetId() );
+            event.SetEventObject( this );
+            HandleWindowEvent( event );
+        }
+
         return;
     }