Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2008-12-30 16:12:51 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2008-12-30 16:12:51 (GMT)
commitee610189e55ec6b469fb44f4de91431392f0ab7f (patch)
treecce646ceff3a77d5003027b2e060539abd8aaef8 /shell
parent76f0af54740d46b8f35712234c027f77920d7c0f (diff)
Fix saving images to remote locations.
2008-12-30 Carlos Garcia Campos <carlosgc@gnome.org> * shell/ev-window.c: (image_save_dialog_response_cb): Fix saving images to remote locations. svn path=/trunk/; revision=3314
Diffstat (limited to 'shell')
-rw-r--r--shell/ev-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index d53d818..cce1fdc 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -5332,7 +5332,7 @@ image_save_dialog_response_cb (GtkWidget *fc,
if (!is_native) {
GFile *source_file;
- source_file = g_file_new_for_uri (filename);
+ source_file = g_file_new_for_path (filename);
ev_window_save_remote (ev_window, source_file, target_file);
g_object_unref (source_file);