aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 05fd23bcb6..cc66cf3278 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,11 @@
2004-05-18 Chris Toshok <toshok@ximian.com>
+ * gui/contact-list-editor/e-contact-list-editor.c
+ (file_send_as_cb): pass 0 to eab_send_contact.
+ (file_send_to_cb): same.
+
+2004-05-18 Chris Toshok <toshok@ximian.com>
+
* gui/widgets/eab-gui-util.c
(eab_send_to_contact_and_email_num_list): split out the
DISPOSITION_AS_TO stuff here, and make it take a GList of
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
index 0527432d3d..81b0a4a3d2 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
@@ -445,7 +445,7 @@ file_send_as_cb (GtkWidget *widget, gpointer data)
extract_info (cle);
- eab_send_contact(cle->contact, EAB_DISPOSITION_AS_ATTACHMENT);
+ eab_send_contact(cle->contact, 0, EAB_DISPOSITION_AS_ATTACHMENT);
}
static void
@@ -455,7 +455,7 @@ file_send_to_cb (GtkWidget *widget, gpointer data)
extract_info (cle);
- eab_send_contact(cle->contact, EAB_DISPOSITION_AS_TO);
+ eab_send_contact(cle->contact, 0, EAB_DISPOSITION_AS_TO);
}
static void