aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2004-05-19 06:13:23 +0800
committerChris Toshok <toshok@src.gnome.org>2004-05-19 06:13:23 +0800
commit7aa624f4eb5c9191571bcf894e09952d0b3e94f1 (patch)
tree7d7c9f294848b41722c8e608d6d6048a22a31733 /addressbook
parent2eb079b0280c3337d96483c39e5b1c3551e03c0f (diff)
downloadgsoc2013-evolution-7aa624f4eb5c9191571bcf894e09952d0b3e94f1.tar
gsoc2013-evolution-7aa624f4eb5c9191571bcf894e09952d0b3e94f1.tar.gz
gsoc2013-evolution-7aa624f4eb5c9191571bcf894e09952d0b3e94f1.tar.bz2
gsoc2013-evolution-7aa624f4eb5c9191571bcf894e09952d0b3e94f1.tar.lz
gsoc2013-evolution-7aa624f4eb5c9191571bcf894e09952d0b3e94f1.tar.xz
gsoc2013-evolution-7aa624f4eb5c9191571bcf894e09952d0b3e94f1.tar.zst
gsoc2013-evolution-7aa624f4eb5c9191571bcf894e09952d0b3e94f1.zip
pass 0 to eab_send_contact. (file_send_to_cb): same.
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. svn path=/trunk/; revision=25964
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