]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/wizard/wizard.cpp
new VC++ templates and project files generated from them: now use only one
[wxWidgets.git] / samples / wizard / wizard.cpp
index c40527185714e2e6fbfe71a47052656029be265e..6e54020f4008505688ecd320d141538d15d91159 100644 (file)
@@ -313,10 +313,10 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
 
 void MyFrame::OnRunWizard(wxCommandEvent& WXUNUSED(event))
 {
-    wxWizard *wizard = wxWizard::Create(this, -1,
-                                        "Absolutely Useless Wizard",
-                                        BMP_WIZARD_1);
-
+    wxWizard *wizard = new wxWizard(this, -1,
+                                       "Absolutely Useless Wizard",
+                                       BMP_WIZARD_1);
+    
     // a wizard page may be either an object of predefined class
     wxWizardPageSimple *page1 = new wxWizardPageSimple(wizard);
     wxStaticText *text = new wxStaticText(page1, -1,
@@ -352,5 +352,5 @@ void MyFrame::OnRunWizard(wxCommandEvent& WXUNUSED(event))
 
 void MyFrame::OnWizardCancel(wxWizardEvent& WXUNUSED(event))
 {
-    wxLogStatus(this, "The wizard was cancelled.");
+    wxLogStatus(this, wxT("The wizard was cancelled."));
 }