]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docvwmdi/view.cpp
OSX two-level header fixes
[wxWidgets.git] / samples / docvwmdi / view.cpp
index 37b262768795bd1a9ebb50bafe9929fbd2d5ccf8..a598fbc1321a19557f82c28bf9ed6d57d04e0c4a 100644 (file)
@@ -54,7 +54,7 @@ bool DrawingView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
     // X seems to require a forced resize
     int x, y;
     frame->GetSize(&x, &y);
-    frame->SetSize(wxDefaultPosition.x, wxDefaultPosition.y, x, y);
+    frame->SetSize(wxDefaultCoord, wxDefaultCoord, x, y);
 #endif
     frame->Show(true);
     Activate(true);
@@ -147,7 +147,7 @@ bool TextEditView::OnCreate(wxDocument *doc, long WXUNUSED(flags) )
   // X seems to require a forced resize
   int x, y;
   frame->GetSize(&x, &y);
-  frame->SetSize(wxDefaultPosition.x, wxDefaultPosition.y, x, y);
+  frame->SetSize(wxDefaultCoord, wxDefaultCoord, x, y);
 #endif
 
   frame->Show(true);