]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
Corrected DoBlit code to use offset into mask
[wxWidgets.git] / src / msw / window.cpp
index 84dc12f4b7e930873ccae3a98fbfb10d2022f7dd..740a47fe7abaa301e6090021aeb59fb3ed903099 100644 (file)
@@ -1150,11 +1150,14 @@ void wxWindow::DoGetPosition(int *x, int *y) const
             ::ScreenToClient(hParentWnd, &point);
         }
 
-        // We may be faking the client origin. So a window that's really at (0,
-        // 30) may appear (to wxWin apps) to be at (0, 0).
-        wxPoint pt(parent->GetClientAreaOrigin());
-        point.x -= pt.x;
-        point.y -= pt.y;
+        if ( parent )
+        {
+            // We may be faking the client origin. So a window that's really at (0,
+            // 30) may appear (to wxWin apps) to be at (0, 0).
+            wxPoint pt(parent->GetClientAreaOrigin());
+            point.x -= pt.x;
+            point.y -= pt.y;
+        }
     }
 
     if ( x )