]> git.saurik.com Git - wxWidgets.git/commitdiff
no real changes, just fixed confusing (to both people and coverity) mix of testing...
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Mar 2007 15:53:09 +0000 (15:53 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 30 Mar 2007 15:53:09 +0000 (15:53 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45152 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/window.cpp

index 481f1286f6ef9ba2bfb60fd4013fd119802c589e..e0dc6c3a2aba3c4efd0e8865ae61fd24890c2e93 100644 (file)
@@ -2924,8 +2924,8 @@ void wxWindowGTK::DoGetPosition( int *x, int *y ) const
             int org_y = 0;
             gdk_window_get_origin( source, &org_x, &org_y );
 
-            if (GetParent())
-                GetParent()->ScreenToClient(&org_x, &org_y);
+            if (m_parent)
+                m_parent->ScreenToClient(&org_x, &org_y);
 
             wx_const_cast(wxWindowGTK*, this)->m_x = org_x;
             wx_const_cast(wxWindowGTK*, this)->m_y = org_y;