diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2005-12-23 12:39:34 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-12-23 12:39:34 +0800 |
commit | ed7940939346ccd9d16f3a15712d519d8a5f5461 (patch) | |
tree | cac8213ee805b365250ee60e0f6703b329d844e7 /calendar | |
parent | 4f2de6eca9141bc4ac495d543482adb70d214a65 (diff) | |
download | gsoc2013-evolution-ed7940939346ccd9d16f3a15712d519d8a5f5461.tar.gz 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')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/conduits/calendar/calendar-conduit.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 60f2de1634..c469c556dc 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +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. + 2005-12-21 Chenthill Palanisamy <pchenthill@novell.com> Fixes #306150 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); } } |