From: Robert Roebling Date: Sat, 4 Nov 2006 16:56:07 +0000 (+0000) Subject: Reenabled page selection event when page in notebook X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7ceea08fa33f54122cfbfc16b499f0ba6cab71ff Reenabled page selection event when page in notebook was deleted. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43038 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/notebook.cpp b/src/gtk/notebook.cpp index aa1774ecf6..4bb1ee5a07 100644 --- a/src/gtk/notebook.cpp +++ b/src/gtk/notebook.cpp @@ -608,18 +608,8 @@ wxNotebookPage *wxNotebook::DoRemovePage( size_t page ) // 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, - // clearly, the selection should stay 0), so suppress this - g_signal_handlers_disconnect_by_func (m_widget, - (gpointer) gtk_notebook_page_change_callback, - this); - gtk_notebook_remove_page( GTK_NOTEBOOK(m_widget), page ); - g_signal_connect (m_widget, "switch_page", - G_CALLBACK (gtk_notebook_page_change_callback), this); - wxGtkNotebookPage* p = GetNotebookPage(page); m_pagesData.DeleteObject(p); delete p;