aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog9
-rw-r--r--addressbook/gui/component/select-names/e-select-names-bonobo.c2
-rw-r--r--addressbook/gui/component/select-names/e-select-names-text-model.c2
3 files changed, 11 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 4a78bd67c2..d98e78f4ec 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,12 @@
+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.
+
2002-11-19 Ettore Perazzoli <ettore@ximian.com>
* gui/component/select-names/GNOME_Evolution_Addressbook_SelectNames.server.in.in,
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
diff --git a/addressbook/gui/component/select-names/e-select-names-text-model.c b/addressbook/gui/component/select-names/e-select-names-text-model.c
index 48a1601770..1fbc0aa7fd 100644
--- a/addressbook/gui/component/select-names/e-select-names-text-model.c
+++ b/addressbook/gui/component/select-names/e-select-names-text-model.c
@@ -242,7 +242,7 @@ resize_cb (ESelectNamesModel *source, gint index, gint old_len, gint new_len, ET
}
static void
-changed_cb (ETextModel *model)
+changed_cb (ESelectNamesModel *source, ETextModel *model)
{
ESelectNamesTextModel *text_model = E_SELECT_NAMES_TEXT_MODEL (model);