summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2006-06-19 06:20:30 +0000
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-06-19 06:20:30 +0000
commit65af878f08d65b684e344a20da0702844ef71c27 (patch)
treef5c0ae6ddee1bbf8d80c6c9509bc4fa3b945dc03
parent50536890a6f63c07a3508cc3ef4749e4379907c3 (diff)
downloadevolution-data-server-65af878f08d65b684e344a20da0702844ef71c27.tar.gz
Remove debug statements that leaked into the commit.
2006-06-19 Harish Krishnaswamy <kharish@novell.com> * libecal/e-cal-component.c (get_attachment_list): Remove debug statements that leaked into the commit.
-rw-r--r--calendar/libecal/e-cal-component.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/calendar/libecal/e-cal-component.c b/calendar/libecal/e-cal-component.c
index b003d6377..274eab86c 100644
--- a/calendar/libecal/e-cal-component.c
+++ b/calendar/libecal/e-cal-component.c
@@ -1518,14 +1518,12 @@ get_attachment_list (GSList *attachment_list, GSList **al)
*/
icalattach_ref (attachment->attach);
data = icalattach_get_url (attachment->attach);
- g_message ("Before decoding %s\n", data);
buf_size = strlen (data);
buf = g_malloc0 (buf_size);
icalvalue_decode_ical_string (data, buf, buf_size);
}
else
data = NULL;
- g_message ("After decoding: %s\n", buf);
*al = g_slist_prepend (*al, (char *)buf);
}