]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/richedit/wxLayout.cpp
another file where the version should be updated
[wxWidgets.git] / samples / richedit / wxLayout.cpp
index 183c9e59c63f04a5e87bedfa69ec5f77cb56a827..cdb801617728744548a350bd4be236baabc1fe5f 100644 (file)
@@ -7,10 +7,6 @@
  *
  */
 
-#ifdef __GNUG__
-#pragma implementation "wxLayout.h"
-#endif
-
 #include "wx/wxprec.h"
 #ifdef __BORLANDC__
 #  pragma hdrstop
@@ -78,7 +74,7 @@ MyFrame::MyFrame() :
 {
 #if wxUSE_STATUSBAR
    CreateStatusBar( 2 );
-   SetStatusText( _T("wxLayout by Karsten BallΓΌder.") );
+   SetStatusText( _T("wxLayout by Karsten Ballueder.") );
 #endif // wxUSE_STATUSBAR
 
    wxMenuBar *menu_bar = new wxMenuBar();
@@ -519,7 +515,7 @@ void MyFrame::OnPageSetup(wxCommandEvent& WXUNUSED(event))
 #else
    wxGetApp().SetPrintMode(wxPRINT_POSTSCRIPT);
 #endif
-   wxPageSetupData data;
+   wxPageSetupDialogData data;
 
 #if defined(__WXMSW__) || defined(__WXMAC__)
    wxPageSetupDialog pageSetupDialog(this, & data);
@@ -528,7 +524,7 @@ void MyFrame::OnPageSetup(wxCommandEvent& WXUNUSED(event))
 #endif
    pageSetupDialog.ShowModal();
 
-   data = pageSetupDialog.GetPageSetupData();
+   data = pageSetupDialog.GetPageSetupDialogData();
 }
 
 void MyFrame::OnPrintSetupPS(wxCommandEvent& WXUNUSED(event))