diff options
author | Not Zed <NotZed@Ximian.com> | 2002-11-21 07:41:35 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-11-21 07:41:35 +0800 |
commit | 86a5d1bf73483198f92067a5c3dbdf23956f1a78 (patch) | |
tree | 9cf181b827e15a599a3e3e306cfb1f32285b097b /addressbook/gui/component/select-names/e-select-names-bonobo.c | |
parent | c854e3d3205b11afc194b0d3a658125056b93a7f (diff) | |
download | gsoc2013-evolution-86a5d1bf73483198f92067a5c3dbdf23956f1a78.tar gsoc2013-evolution-86a5d1bf73483198f92067a5c3dbdf23956f1a78.tar.gz gsoc2013-evolution-86a5d1bf73483198f92067a5c3dbdf23956f1a78.tar.bz2 gsoc2013-evolution-86a5d1bf73483198f92067a5c3dbdf23956f1a78.tar.lz gsoc2013-evolution-86a5d1bf73483198f92067a5c3dbdf23956f1a78.tar.xz gsoc2013-evolution-86a5d1bf73483198f92067a5c3dbdf23956f1a78.tar.zst gsoc2013-evolution-86a5d1bf73483198f92067a5c3dbdf23956f1a78.zip |
Pass type to bonobo_ctonrol_set_property, and also NULL terminate the
2002-11-21 Not Zed <NotZed@Ximian.com>
* gui/component/select-names/e-select-names-bonobo.c
(entry_changed): Pass type to bonobo_ctonrol_set_property, and
also NULL terminate the valist.
* gui/component/select-names/e-select-names-text-model.c
(changed_cb): Fix signature for signal.
svn path=/trunk/; revision=18871
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names-bonobo.c')
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names-bonobo.c | 2 |
1 files changed, 1 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 bfe182b6f2..a8284a0f83 100644 --- a/addressbook/gui/component/select-names/e-select-names-bonobo.c +++ b/addressbook/gui/component/select-names/e-select-names-bonobo.c @@ -258,7 +258,7 @@ entry_changed (GtkWidget *widget, BonoboControl *control) gboolean changed = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (widget), "entry_property_id_changed")); if (!changed) - bonobo_control_set_property (control, NULL, "entry_changed", TRUE); + bonobo_control_set_property (control, NULL, "entry_changed", TC_CORBA_boolean, TRUE, NULL); } static void |