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 /addressbook/gui/component | |
parent | 65561bd80e6853bb8d99c22b5d93287fefaff624 (diff) | |
download | gsoc2013-evolution-f79d0372e2624010c6b477e12453926b451adb9e.tar.gz 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
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-bonobo.c | 7 |
1 files changed, 6 insertions, 1 deletions
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 |