]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/wizard.cpp
OS/2 specific compilation fix for wxCStrData handling.
[wxWidgets.git] / src / generic / wizard.cpp
index 385a10d8b866151691ab633d5c0e6eefee4f1701..7973669650b96a1a9386a182b6a64916420ea768 100644 (file)
@@ -643,7 +643,10 @@ bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
     bool hasNext = HasNextPage(m_page);
     if ( btnLabelWasNext != hasNext )
     {
-        m_btnNext->SetLabel(hasNext ? _("&Next >") : _("&Finish"));
+        if ( hasNext )
+            m_btnNext->SetLabel(_("&Next >"));
+        else
+            m_btnNext->SetLabel(_("&Finish"));
     }
     // nothing to do: the label was already correct