r15986 - in /desktop/unstable/glade-3/debian: changelog patches/02_rename_crash.patch

joss at users.alioth.debian.org joss at users.alioth.debian.org
Sun May 18 14:45:11 UTC 2008


Author: joss
Date: Sun May 18 14:45:11 2008
New Revision: 15986

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=15986
Log:
02_rename_crash.patch [Pavel Kostyuchenko]: stolen from bugzilla 
#533471. Fix crasher when renaming a menu item. Closes: #476134.

Added:
    desktop/unstable/glade-3/debian/patches/02_rename_crash.patch
Modified:
    desktop/unstable/glade-3/debian/changelog

Modified: desktop/unstable/glade-3/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/glade-3/debian/changelog?rev=15986&op=diff
==============================================================================
--- desktop/unstable/glade-3/debian/changelog (original)
+++ desktop/unstable/glade-3/debian/changelog Sun May 18 14:45:11 2008
@@ -1,3 +1,10 @@
+glade-3 (3.4.5-3) UNRELEASED; urgency=low
+
+  * 02_rename_crash.patch [Pavel Kostyuchenko]: stolen from bugzilla 
+    #533471. Fix crasher when renaming a menu item. Closes: #476134.
+
+ -- Josselin Mouette <joss at debian.org>  Sun, 18 May 2008 16:32:46 +0200
+
 glade-3 (3.4.5-2) unstable; urgency=low
 
   * debian/patches/01_includes.patch:

Added: desktop/unstable/glade-3/debian/patches/02_rename_crash.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/glade-3/debian/patches/02_rename_crash.patch?rev=15986&op=file
==============================================================================
--- desktop/unstable/glade-3/debian/patches/02_rename_crash.patch (added)
+++ desktop/unstable/glade-3/debian/patches/02_rename_crash.patch Sun May 18 14:45:11 2008
@@ -1,0 +1,34 @@
+Index: gladeui/glade-base-editor.c
+===================================================================
+--- gladeui/glade-base-editor.c	(revision 1826)
++++ gladeui/glade-base-editor.c	(working copy)
+@@ -377,7 +377,7 @@
+ glade_base_editor_update_properties_idle (gpointer data)
+ {
+ 	GladeBaseEditor *editor = (GladeBaseEditor *)data;
+-	glade_base_editor_treeview_cursor_changed (NULL, editor);
++	glade_base_editor_treeview_cursor_changed (editor->priv->treeview, editor);
+ 	editor->priv->properties_idle = 0;
+ 	return FALSE;
+ }
+@@ -1146,7 +1146,7 @@
+ 	}
+ 
+ 	/* Set the name */
+-	glade_widget_set_name (gchild_new, name);
++	glade_command_set_name (gchild_new, name);
+ 	
+ 	if (GTK_IS_WIDGET (child_new))
+ 		gtk_widget_show_all (GTK_WIDGET (child_new));
+Index: gladeui/glade-project.c
+===================================================================
+--- gladeui/glade-project.c	(revision 1826)
++++ gladeui/glade-project.c	(working copy)
+@@ -1915,6 +1915,7 @@
+ 
+ 	g_return_if_fail (GLADE_IS_PROJECT (project));
+ 	g_return_if_fail (GLADE_IS_WIDGET (glade_widget));
++	g_return_if_fail (widget_name);
+ 
+ 	do
+ 	{




More information about the pkg-gnome-commits mailing list