diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2005-02-26 01:08:08 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2005-02-26 01:08:08 +0800 |
commit | 1acc4863a3c1a150ffe7f6ebf30ee21204ceceab (patch) | |
tree | 78b10b58cafcf016593dacdac8240454250ed909 /calendar | |
parent | 7513daf020bd9e3fabdbeca6d3f124c7ff0b9e72 (diff) | |
download | gsoc2013-evolution-1acc4863a3c1a150ffe7f6ebf30ee21204ceceab.tar.gz gsoc2013-evolution-1acc4863a3c1a150ffe7f6ebf30ee21204ceceab.tar.zst gsoc2013-evolution-1acc4863a3c1a150ffe7f6ebf30ee21204ceceab.zip |
Make sure the base uri is same as the one migration code uses. Avoids two
2005-02-25 Sivaiah Nallagatla <snallagatla@novell.com>
* gui/calendar-component.c (ensure_sources) :
Make sure the base uri is same as the one
migration code uses. Avoids two "On This Computer"
groups when both migration and this code runs.
svn path=/trunk/; revision=28890
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/calendar-component.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d3f194533c..8fa8d07f2d 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2005-02-25 Sivaiah Nallagatla <snallagatla@novell.com> + + * gui/calendar-component.c (ensure_sources) : + Make sure the base uri is same as the one + migration code uses. Avoids two "On This Computer" + groups when both migration and this code runs. + 2005-02-23 Hans Petter Jansson <hpj@novell.com> * common/authentication.c: diff --git a/calendar/gui/calendar-component.c b/calendar/gui/calendar-component.c index 97b8b18846..fd838385d8 100644 --- a/calendar/gui/calendar-component.c +++ b/calendar/gui/calendar-component.c @@ -152,7 +152,7 @@ ensure_sources (CalendarComponent *component) } base_uri = g_build_filename (calendar_component_peek_base_directory (component), - "calendar", "local", + "/calendar/local/", NULL); base_uri_proto = g_strconcat ("file://", base_uri, NULL); |