aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/conduits
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2005-12-23 12:39:34 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2005-12-23 12:39:34 +0800
commited7940939346ccd9d16f3a15712d519d8a5f5461 (patch)
treecac8213ee805b365250ee60e0f6703b329d844e7 /calendar/conduits
parent4f2de6eca9141bc4ac495d543482adb70d214a65 (diff)
downloadgsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.tar
gsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.tar.gz
gsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.tar.bz2
gsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.tar.lz
gsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.tar.xz
gsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.tar.zst
gsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.zip
Fix a build breaker. g_filename_to_uri takes 3 arguments.
2005-12-23 Harish Krishnaswamy <kharish@novell.com> * conduits/calendar/calendar-conduit.c (calconduit_load_configuration): Fix a build breaker. g_filename_to_uri takes 3 arguments. svn path=/trunk/; revision=30942
Diffstat (limited to 'calendar/conduits')
-rw-r--r--calendar/conduits/calendar/calendar-conduit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/conduits/calendar/calendar-conduit.c b/calendar/conduits/calendar/calendar-conduit.c
index e8840ecddd..99b9832bd7 100644
--- a/calendar/conduits/calendar/calendar-conduit.c
+++ b/calendar/conduits/calendar/calendar-conduit.c
@@ -168,7 +168,7 @@ calconduit_load_configuration (guint32 pilot_id)
NULL);
/* need to upgrade the last_uri. yay. */
g_free (c->last_uri);
- c->last_uri = g_filename_to_uri (new_filename);
+ c->last_uri = g_filename_to_uri (new_filename, NULL, NULL);
g_free (new_filename);
}
}