]> git.saurik.com Git - wxWidgets.git/commitdiff
compile with GTK < 2.8
authorRobert Roebling <robert@roebling.de>
Thu, 16 Aug 2007 18:31:11 +0000 (18:31 +0000)
committerRobert Roebling <robert@roebling.de>
Thu, 16 Aug 2007 18:31:11 +0000 (18:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48134 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/window.cpp

index 0d6438904bfc137ad2f279508e17f45c0736fdcc..5c68e602d4da8d74d8d8b20bb379235ea0ee01d1 100644 (file)
@@ -2111,6 +2111,7 @@ void gtk_window_size_callback( GtkWidget *WXUNUSED(widget),
 // "grab_broken" 
 //-----------------------------------------------------------------------------
 
 // "grab_broken" 
 //-----------------------------------------------------------------------------
 
+#ifdef __WXGTK210__
 static void
 gtk_window_grab_broken( GtkWidget *m_widget,
                         GdkEventGrabBroken *event,
 static void
 gtk_window_grab_broken( GtkWidget *m_widget,
                         GdkEventGrabBroken *event,
@@ -2124,6 +2125,7 @@ gtk_window_grab_broken( GtkWidget *m_widget,
         win->GetEventHandler()->ProcessEvent( evt );
     }
 }
         win->GetEventHandler()->ProcessEvent( evt );
     }
 }
+#endif
 
 
 } // extern "C"
 
 
 } // extern "C"
@@ -2540,16 +2542,26 @@ void wxWindowGTK::PostCreation()
         // Catch native resize events
         g_signal_connect (m_wxwindow, "size_allocate",
                           G_CALLBACK (gtk_window_size_callback), this);
         // 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);
                           G_CALLBACK (gtk_window_grab_broken), this);
+        }
+#endif
     }
 
     if ( connect_widget != m_wxwindow )
     {
     }
 
     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);
                         G_CALLBACK (gtk_window_grab_broken), this);
+        }
+#endif
     }
 
 #if wxUSE_COMBOBOX
     }
 
 #if wxUSE_COMBOBOX