aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorCarsten Guenther <carsteng@src.gnome.org>2005-08-13 05:19:52 +0800
committerCarsten Guenther <carsteng@src.gnome.org>2005-08-13 05:19:52 +0800
commit54a4ffe22bcf2cc25f9bf7465b57597e429b2512 (patch)
tree677923dc1e6f132d87a97025d215d44b89f7fbbc /calendar/gui
parente5882036d054d772d1da989f185a354bd58d9a0e (diff)
downloadgsoc2013-evolution-54a4ffe22bcf2cc25f9bf7465b57597e429b2512.tar
gsoc2013-evolution-54a4ffe22bcf2cc25f9bf7465b57597e429b2512.tar.gz
gsoc2013-evolution-54a4ffe22bcf2cc25f9bf7465b57597e429b2512.tar.bz2
gsoc2013-evolution-54a4ffe22bcf2cc25f9bf7465b57597e429b2512.tar.lz
gsoc2013-evolution-54a4ffe22bcf2cc25f9bf7465b57597e429b2512.tar.xz
gsoc2013-evolution-54a4ffe22bcf2cc25f9bf7465b57597e429b2512.tar.zst
gsoc2013-evolution-54a4ffe22bcf2cc25f9bf7465b57597e429b2512.zip
Use slash instead of G_DIR_SEPARATOR_S since URIs always use slash as separator
svn path=/trunk/; revision=30101
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/dialogs/comp-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 6bb39cdb81..93b654e3ba 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -625,7 +625,7 @@ get_attachment_list (CompEditor *editor)
filename = g_strdup_printf ("%s-%s", comp_uid, safe_fname);
- attach_file_url = g_build_path (G_DIR_SEPARATOR_S, local_store, filename, NULL);
+ attach_file_url = g_build_path ("/", local_store, filename, NULL);
g_free (filename);
g_free (safe_fname);
@@ -1017,7 +1017,7 @@ attachment_bar_icon_clicked_cb (EAttachmentBar *bar, GdkEvent *event, CompEditor
comp_uid,
camel_mime_part_get_filename(attachment->body));
- attach_file_url = g_build_path (G_DIR_SEPARATOR_S, local_store, filename, NULL);
+ attach_file_url = g_build_path ("/", local_store, filename, NULL);
/* launch the url now */
/* TODO should send GError and handle error conditions