From: Robin Dunn Date: Fri, 24 Sep 2004 16:18:37 +0000 (+0000) Subject: Corected GetXWindow macro for wxGTK port. (Bug# 1033681) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ce102f9d50827062a1fe28085537a69d7cda9697?ds=sidebyside Corected GetXWindow macro for wxGTK port. (Bug# 1033681) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29323 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/helpers.cpp b/wxPython/src/helpers.cpp index dc4666b41d..f411f31ee8 100644 --- a/wxPython/src/helpers.cpp +++ b/wxPython/src/helpers.cpp @@ -28,7 +28,7 @@ #include #include #include -#define GetXWindow(wxwin) GDK_WINDOW_XWINDOW((wxwin)->m_widget->window) +#define GetXWindow(wxwin) GDK_WINDOW_XWINDOW(GTK_PIZZA((wxwin)->m_wxwindow)->bin_window) #include #endif