diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-bonobo.c | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 91a68ede86..4af68a4032 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2001-10-30 JP Rosevear <jpr@ximian.com> + * gui/component/select-names/e-select-names-bonobo.c + (manager_ok_cb): send a null bonobo arg to prevent explosion + +2001-10-30 JP Rosevear <jpr@ximian.com> + * gui/widgets/e-addressbook-view.c: correct include typo 2001-10-29 Jon Trowbridge <trow@ximian.com. diff --git a/addressbook/gui/component/select-names/e-select-names-bonobo.c b/addressbook/gui/component/select-names/e-select-names-bonobo.c index 70cacc6c6e..8952b0d0e3 100644 --- a/addressbook/gui/component/select-names/e-select-names-bonobo.c +++ b/addressbook/gui/component/select-names/e-select-names-bonobo.c @@ -265,13 +265,18 @@ static void manager_ok_cb (ESelectNamesManager *manager, gpointer closure) { ESelectNamesBonobo *select_names = E_SELECT_NAMES_BONOBO (closure); + BonoboArg *arg; + + arg = bonobo_arg_new (BONOBO_ARG_NULL); bonobo_event_source_notify_listeners_full (select_names->priv->event_source, "GNOME/Evolution", "ok", "dialog", - NULL, + arg, NULL); + + bonobo_arg_release (arg); } static Bonobo_Control |