+ pPage->SetSize(rect, wxSIZE_FORCE_EVENT);
+ }
+
+#if 0 // deactivate r65078 for the moment
+ // If the selected page is hidden at this point, the notebook
+ // has become visible for the first time after creation, and
+ // we postponed showing the page in ChangePage().
+ // So show the selected page now.
+ if ( m_selection != wxNOT_FOUND )
+ {
+ wxNotebookPage *pPage = m_pages[m_selection];
+ if ( !pPage->IsShown() )
+ {
+ pPage->Show( true );
+ pPage->SetFocus();
+ }