bonoboui patch



The attached patch is required for bonoboui to build against the current
CVS version of GTK. They have just removed gtk_container_focus from
existence over there.

May I commit?

Malcolm


Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/libbonoboui/ChangeLog,v
retrieving revision 1.32
diff -u -r1.32 ChangeLog
--- ChangeLog	2001/06/07 15:39:48	1.32
+++ ChangeLog	2001/06/09 17:24:02
@@ -1,3 +1,9 @@
+Sun Jun 10 01:27:57 2001  Malcolm Tredinnick <malcolm commsecure com au>
+
+	* bonobo-control.c (impl_Bonobo_Control_focus): altered a
+	  gtk_container_focus() call to be a gtk_widget_child_focus() call
+	  (matching a recent gtk+ change).
+
 2001-06-07  Pablo Saratxaga  <pablo mandrakesoft com>
 
 	* configure.in: Added "az", "wa" and Norwegian to $ALL_LINGUAS
Index: bonobo/bonobo-control.c
===================================================================
RCS file: /cvs/gnome/libbonoboui/bonobo/bonobo-control.c,v
retrieving revision 1.82
diff -u -r1.82 bonobo-control.c
--- bonobo/bonobo-control.c	2001/05/31 06:02:17	1.82
+++ bonobo/bonobo-control.c	2001/06/09 17:24:06
@@ -519,7 +519,7 @@
 		return FALSE;
 	}
 
-	return gtk_container_focus (GTK_CONTAINER (priv->plug), direction);
+	return gtk_widget_child_focus (GTK_CONTAINER (priv->plug), direction);
 }
 
 BonoboControl *

-- 
Never make any misteaks.




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]