Remove old GTK 1.2 code

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53966 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-06-03 19:49:06 +00:00
parent a25484eb13
commit 89edb75e59

View File

@@ -88,7 +88,7 @@ static void gtk_notebook_page_changing_callback( GtkNotebook *widget,
if ( !notebook->SendPageChangingEvent(page) )
{
// program doesn't allow the page change
g_signal_stop_emission_by_name(notebook->m_widget, "switch_page");
g_signal_stop_emission_by_name( widget, "switch_page" );
}
else
{
@@ -109,20 +109,6 @@ static void gtk_notebook_page_changed_callback( GtkNotebook * WXUNUSED(widget),
}
}
//-----------------------------------------------------------------------------
// "realize" from m_widget
//-----------------------------------------------------------------------------
extern "C" {
static void
gtk_notebook_realized_callback( GtkWidget * WXUNUSED(widget), wxWindow *win )
{
/* GTK 1.2 up to version 1.2.5 is broken so that we have to call a queue_resize
here in order to make repositioning before showing to take effect. */
gtk_widget_queue_resize( win->m_widget );
}
}
//-----------------------------------------------------------------------------
// InsertChild callback for wxNotebook
//-----------------------------------------------------------------------------
@@ -219,9 +205,6 @@ bool wxNotebook::Create(wxWindow *parent, wxWindowID id,
PostCreation(size);
g_signal_connect (m_widget, "realize",
G_CALLBACK (gtk_notebook_realized_callback), this);
return true;
}