aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-08-11 14:04:59 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-08-11 14:04:59 +0800
commit5fa2330cffbe429bf5e098bf154e56a2c625ea90 (patch)
treebbdfcfabafd2e80a27919b9c3f2aff8e39013c82
parent0aedb7c6f5fb8028c78379982c881a1023e1e451 (diff)
downloadgsoc2013-evolution-5fa2330cffbe429bf5e098bf154e56a2c625ea90.tar
gsoc2013-evolution-5fa2330cffbe429bf5e098bf154e56a2c625ea90.tar.gz
gsoc2013-evolution-5fa2330cffbe429bf5e098bf154e56a2c625ea90.tar.bz2
gsoc2013-evolution-5fa2330cffbe429bf5e098bf154e56a2c625ea90.tar.lz
gsoc2013-evolution-5fa2330cffbe429bf5e098bf154e56a2c625ea90.tar.xz
gsoc2013-evolution-5fa2330cffbe429bf5e098bf154e56a2c625ea90.tar.zst
gsoc2013-evolution-5fa2330cffbe429bf5e098bf154e56a2c625ea90.zip
Add missing argument in the call to itip_send_comp.
2006-08-11 Harish Krishnaswamy <kharish@novell.com> * itip-formatter.c: (send_comp_to_attendee): Add missing argument in the call to itip_send_comp. svn path=/trunk/; revision=32531
-rw-r--r--plugins/itip-formatter/ChangeLog5
-rw-r--r--plugins/itip-formatter/itip-formatter.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog
index 02e5e196fa..18ed294104 100644
--- a/plugins/itip-formatter/ChangeLog
+++ b/plugins/itip-formatter/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-11 Harish Krishnaswamy <kharish@novell.com>
+
+ * itip-formatter.c: (send_comp_to_attendee):
+ Add missing argument in the call to itip_send_comp.
+
2006-07-22 Chenthill Palanisamy <pchenthill@novell.com>
* itip-formatter.c: (cal_opened_cb), (source_selected_cb),
diff --git a/plugins/itip-formatter/itip-formatter.c b/plugins/itip-formatter/itip-formatter.c
index c563eb00c0..873f457414 100644
--- a/plugins/itip-formatter/itip-formatter.c
+++ b/plugins/itip-formatter/itip-formatter.c
@@ -957,7 +957,7 @@ send_comp_to_attendee (ECalComponentItipMethod method, ECalComponent *comp, cons
}
/* FIXME send the attachments in the request */
- status = itip_send_comp (method, send_comp, client, NULL, NULL);
+ status = itip_send_comp (method, send_comp, client, NULL, NULL, NULL);
g_object_unref (send_comp);