// "grab_broken"
//-----------------------------------------------------------------------------
+#ifdef __WXGTK210__
static void
gtk_window_grab_broken( GtkWidget *m_widget,
GdkEventGrabBroken *event,
win->GetEventHandler()->ProcessEvent( evt );
}
}
+#endif
} // extern "C"
// Catch native resize events
g_signal_connect (m_wxwindow, "size_allocate",
G_CALLBACK (gtk_window_size_callback), this);
- // Make sure we can notify the app when mouse capture is lost
- g_signal_connect (m_wxwindow, "grab_broken_event",
+#ifdef __WXGTK210__
+ if (!gtk_check_version(2,8,0))
+ {
+ // Make sure we can notify the app when mouse capture is lost
+ g_signal_connect (m_wxwindow, "grab_broken_event",
G_CALLBACK (gtk_window_grab_broken), this);
+ }
+#endif
}
if ( connect_widget != m_wxwindow )
{
- // Make sure we can notify app code when mouse capture is lost
- g_signal_connect (connect_widget, "grab_broken_event",
+#ifdef __WXGTK210__
+ if (!gtk_check_version(2,8,0))
+ {
+ // Make sure we can notify app code when mouse capture is lost
+ g_signal_connect (connect_widget, "grab_broken_event",
G_CALLBACK (gtk_window_grab_broken), this);
+ }
+#endif
}
#if wxUSE_COMBOBOX