]> git.saurik.com Git - wxWidgets.git/commitdiff
paint event was missing the id, Connect not working for this otherwise
authorStefan Csomor <csomor@advancedconcepts.ch>
Fri, 13 Feb 2009 19:21:51 +0000 (19:21 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Fri, 13 Feb 2009 19:21:51 +0000 (19:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58886 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/osx/window_osx.cpp

index d5a4f2a756ce7b5aba2ddd928e4b8a83b59f2b51..9f47e712eddd0b0488a55fcc153e4aed56f3262f 100644 (file)
@@ -1858,7 +1858,7 @@ bool wxWindowMac::MacDoRedraw( long time )
     {
         // paint the window itself
 
     {
         // paint the window itself
 
-        wxPaintEvent event;
+        wxPaintEvent event(GetId());
         event.SetTimestamp(time);
         event.SetEventObject(this);
         handled = HandleWindowEvent(event);
         event.SetTimestamp(time);
         event.SetEventObject(this);
         handled = HandleWindowEvent(event);