diff options
author | JP Rosevear <jpr@ximian.com> | 2001-10-30 15:06:29 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-10-30 15:06:29 +0800 |
commit | f79d0372e2624010c6b477e12453926b451adb9e (patch) | |
tree | 2f394ec338ac355635ac351901083a665ec1b206 | |
parent | 65561bd80e6853bb8d99c22b5d93287fefaff624 (diff) | |
download | gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.tar gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.tar.gz gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.tar.bz2 gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.tar.lz gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.tar.xz gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.tar.zst gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.zip |
send a null bonobo arg to prevent explosion
001-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
svn path=/trunk/; revision=14437
-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 |