]> git.saurik.com Git - wxWidgets.git/blobdiff - src/univ/notebook.cpp
Michael Fieldings patch 598106 applied in part
[wxWidgets.git] / src / univ / notebook.cpp
index d3d4b29fe1b982e757a0f35b69aa6662747fc783..4c19121069fa5851af7e7bd9308856e780ec36f7 100644 (file)
@@ -255,7 +255,7 @@ int wxNotebook::SetSelection(int nPage)
         m_pages[m_sel]->Show();
     }
 
-    return m_sel;
+    return selOld;
 }
 
 void wxNotebook::ChangePage(int nPage)
@@ -462,7 +462,9 @@ void wxNotebook::DoDrawTab(wxDC& dc, const wxRect& rect, size_t n)
     {
         int image = m_images[n];
 
-#ifdef __WXMSW__    // FIXME
+        // Not needed now that wxGenericImageList is being
+        // used for wxUniversal under MSW
+#if 0 // def __WXMSW__    // FIXME
         int w, h;
         m_imageList->GetSize(n, w, h);
         bmp.Create(w, h);