From 9c862cfb93c8d54cfdd18a7c54c518b1234afa1c Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sun, 15 Oct 2006 18:44:33 +0000 Subject: [PATCH] [ 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 --- src/gtk/notebook.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gtk/notebook.cpp b/src/gtk/notebook.cpp index 16bf982e3a..aa1774ecf6 100644 --- a/src/gtk/notebook.cpp +++ b/src/gtk/notebook.cpp @@ -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, -- 2.45.2