[ 1577675 ] Fix for GTK warnings in wxNotebook::DoRemovePage

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42037 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2006-10-15 18:44:33 +00:00
parent 9fd707a51f
commit 9c862cfb93

View File

@@ -604,7 +604,9 @@ wxNotebookPage *wxNotebook::DoRemovePage( size_t page )
gtk_widget_ref( client->m_widget );
gtk_widget_unrealize( client->m_widget );
gtk_widget_unparent( client->m_widget );
// we don't need to unparent the client->m_widget; GTK+ will do
// that for us (and will throw a warning if we do it!)
// gtk_notebook_remove_page() sends "switch_page" signal with some strange
// new page index (when deleting selected page 0, new page is 1 although,