aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/pcs
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2001-08-22 20:09:12 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2001-08-22 20:09:12 +0800
commitec13cd14dacd7ebcc32a984a4ef858073995653b (patch)
treefc5230f45314c05cd82e6e7b77c15276b6c0fb8a /calendar/pcs
parent0158ec8843ca505eff2b13f15dd87e9810a8a739 (diff)
downloadgsoc2013-evolution-ec13cd14dacd7ebcc32a984a4ef858073995653b.tar
gsoc2013-evolution-ec13cd14dacd7ebcc32a984a4ef858073995653b.tar.gz
gsoc2013-evolution-ec13cd14dacd7ebcc32a984a4ef858073995653b.tar.bz2
gsoc2013-evolution-ec13cd14dacd7ebcc32a984a4ef858073995653b.tar.lz
gsoc2013-evolution-ec13cd14dacd7ebcc32a984a4ef858073995653b.tar.xz
gsoc2013-evolution-ec13cd14dacd7ebcc32a984a4ef858073995653b.tar.zst
gsoc2013-evolution-ec13cd14dacd7ebcc32a984a4ef858073995653b.zip
open the tasks folder associated with the calendar being opened, and not
2001-08-22 Rodrigo Moya <rodrigo@ximian.com> * gui/gnome-cal.c (gnome_calendar_open): open the tasks folder associated with the calendar being opened, and not always the local tasks.ics file * pcs/cal-factory.c (open_fn): use gnome_vfs_uri_new_private when parsing the URI to allow non-registered URIs svn path=/trunk/; revision=12379
Diffstat (limited to 'calendar/pcs')
-rw-r--r--calendar/pcs/cal-factory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/pcs/cal-factory.c b/calendar/pcs/cal-factory.c
index d01349fb8f..86090fc2bb 100644
--- a/calendar/pcs/cal-factory.c
+++ b/calendar/pcs/cal-factory.c
@@ -323,7 +323,7 @@ open_fn (gpointer data)
/* Check the URI */
- uri = gnome_vfs_uri_new (jd->uri);
+ uri = gnome_vfs_uri_new_private (jd->uri, TRUE, TRUE, TRUE);
g_free (jd->uri);
only_if_exists = jd->only_if_exists;