]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/docview/view.cpp
correct access for virtuals
[wxWidgets.git] / samples / docview / view.cpp
index a41b00aa0d3517343d1dee943813ef0a69c58dab..957aff4018ab0527fec752cacc804eae822c42df 100644 (file)
@@ -9,10 +9,6 @@
 // Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-// #pragma implementation
-#endif
-
 // For compilers that support precompilation, includes "wx/wx.h".
 #include "wx/wxprec.h"
 
@@ -57,7 +53,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);
     }
@@ -168,7 +164,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);