aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor-util.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2002-11-07 05:51:45 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2002-11-07 05:51:45 +0800
commit4c76e8e668ecf27747aee459114c14fb2f96f0b8 (patch)
tree111f27980df31c6fadcff67680238ca9403eb071 /calendar/gui/dialogs/comp-editor-util.c
parent5c35a41fe2fa8a6aeaf1a178b102774c92391ed5 (diff)
downloadgsoc2013-evolution-4c76e8e668ecf27747aee459114c14fb2f96f0b8.tar
gsoc2013-evolution-4c76e8e668ecf27747aee459114c14fb2f96f0b8.tar.gz
gsoc2013-evolution-4c76e8e668ecf27747aee459114c14fb2f96f0b8.tar.bz2
gsoc2013-evolution-4c76e8e668ecf27747aee459114c14fb2f96f0b8.tar.lz
gsoc2013-evolution-4c76e8e668ecf27747aee459114c14fb2f96f0b8.tar.xz
gsoc2013-evolution-4c76e8e668ecf27747aee459114c14fb2f96f0b8.tar.zst
gsoc2013-evolution-4c76e8e668ecf27747aee459114c14fb2f96f0b8.zip
don't return a Bonobo_EventSource_ListenerId, since it does not exist
2002-11-06 Rodrigo Moya <rodrigo@ximian.com> * gui/dialogs/comp-editor-util.[ch] (comp_editor_connect_contacts_changed): don't return a Bonobo_EventSource_ListenerId, since it does not exist anymore, and was not even being used. * gui/e-timezone-entry.h: use GLib macros. * gui/dialogs/*.glade: * gui/alarm-notify/*.glade: * gui/*.glade: converted to Glade2 format. svn path=/trunk/; revision=18616
Diffstat (limited to 'calendar/gui/dialogs/comp-editor-util.c')
-rw-r--r--calendar/gui/dialogs/comp-editor-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/comp-editor-util.c b/calendar/gui/dialogs/comp-editor-util.c
index 5d414a640c..4975a9d8f4 100644
--- a/calendar/gui/dialogs/comp-editor-util.c
+++ b/calendar/gui/dialogs/comp-editor-util.c
@@ -338,7 +338,7 @@ comp_editor_create_contacts_control (GNOME_Evolution_Addressbook_SelectNames cor
}
-Bonobo_EventSource_ListenerId
+void
comp_editor_connect_contacts_changed (GtkWidget *contacts_entry,
BonoboListenerCallbackFn changed_cb,
gpointer changed_cb_data)
@@ -349,7 +349,7 @@ comp_editor_connect_contacts_changed (GtkWidget *contacts_entry,
cf = bonobo_widget_get_control_frame (BONOBO_WIDGET (contacts_entry));
pb = bonobo_control_frame_get_control_property_bag (cf, NULL);
- return bonobo_event_source_client_add_listener (
+ bonobo_event_source_client_add_listener (
pb, changed_cb,
"Bonobo/Property:change:entry_changed",
NULL, changed_cb_data);