[evolution-patches] patch for #72369 (address book)



we need to connect to "value_changed" instead of "changed"

Siva
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/ChangeLog,v
retrieving revision 1.1918
diff -u -r1.1918 ChangeLog
--- ChangeLog	8 Feb 2005 18:49:03 -0000	1.1918
+++ ChangeLog	9 Feb 2005 19:25:59 -0000
@@ -1,3 +1,11 @@
+2005-02-09  Sivaiah Nallagatla <snallagatla novell com>
+
+	* gui/component/addressbook-config.c 
+	(eabc_details_limit) : connect to "value_changed"
+	signal of spin button instead of "changed"
+	
+	Fixes #72369 
+
 2005-02-08  Christophe Fergeau <teuf users sourceforge net>
 
 	* importers/evolution-vcard-importer.c (has_bom)
Index: gui/component/addressbook-config.c
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/component/addressbook-config.c,v
retrieving revision 1.98
diff -u -r1.98 addressbook-config.c
--- gui/component/addressbook-config.c	3 Feb 2005 07:06:10 -0000	1.98
+++ gui/component/addressbook-config.c	9 Feb 2005 19:26:04 -0000
@@ -891,7 +891,7 @@
 	sdialog->limit_spinbutton = glade_xml_get_widget (gui, "download-limit-spinbutton");
 	tmp = e_source_get_property(sdialog->source, "limit");
 	gtk_spin_button_set_value((GtkSpinButton *)sdialog->limit_spinbutton, tmp?g_strtod(tmp, NULL):100.0);
-	g_signal_connect (sdialog->limit_spinbutton, "changed", G_CALLBACK (limit_changed_cb), sdialog);
+	g_signal_connect (sdialog->limit_spinbutton, "value_changed", G_CALLBACK (limit_changed_cb), sdialog);
 
 	g_object_unref(gui);
 


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