From: Carlos Garcia Campos Date: Tue, 30 Dec 2008 16:12:51 +0000 (+0000) Subject: Fix saving images to remote locations. X-Git-Tag: EVINCE_2_25_4~15 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=ee610189e55ec6b469fb44f4de91431392f0ab7f;p=evince.git Fix saving images to remote locations. 2008-12-30 Carlos Garcia Campos * shell/ev-window.c: (image_save_dialog_response_cb): Fix saving images to remote locations. svn path=/trunk/; revision=3314 --- diff --git a/ChangeLog b/ChangeLog index 6167fef1..1f20aa1e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-12-30 Carlos Garcia Campos + + * shell/ev-window.c: (image_save_dialog_response_cb): + + Fix saving images to remote locations. + 2008-12-29 Carlos Garcia Campos * shell/ev-application.[ch]: (ev_application_shutdown), diff --git a/shell/ev-window.c b/shell/ev-window.c index d53d8187..cce1fdc6 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);