From 50ed678e3a6eaf497ae85d2ebaed3f7796b5ea45 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Fri, 13 Feb 2009 17:38:28 +0000 Subject: [PATCH] paint event was missing the id, Connect not working for this otherwise git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@58885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mac/carbon/window.cpp b/src/mac/carbon/window.cpp index a574163f8c..7b2176a7dc 100644 --- a/src/mac/carbon/window.cpp +++ b/src/mac/carbon/window.cpp @@ -3231,7 +3231,7 @@ bool wxWindowMac::MacDoRedraw( WXHRGN updatergnr , long time ) { // paint the window itself - wxPaintEvent event; + wxPaintEvent event(GetId()); event.SetTimestamp(time); event.SetEventObject(this); GetEventHandler()->ProcessEvent(event);