]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/wizard.cpp
Removed erroneous EVT_SCROLLWIN
[wxWidgets.git] / src / generic / wizard.cpp
index 9c0e7739439136d7282d7349a26ce69097afcae1..34ef1e74952d6915c3b9cdca9364721e45155376 100644 (file)
@@ -249,7 +249,12 @@ bool wxWizard::ShowPage(wxWizardPage *page, bool goingForward)
     bool bmpIsDefault = !m_page->GetBitmap().Ok();
     if ( m_statbmp && (bmpIsDefault != bmpWasDefault) )
     {
-        m_statbmp->SetBitmap(bmpIsDefault ? m_bitmap : m_page->GetBitmap());
+        wxBitmap bmp;
+        if ( bmpIsDefault )
+            bmp = m_bitmap;
+        else
+            bmp = m_page->GetBitmap();
+        m_statbmp->SetBitmap(bmp);
     }
 
     // and update the buttons state