Bug 561899 – GIMP can't save to mounted filesystem if file exists

2008-11-22  Sven Neumann  <sven@gimp.org>

	Bug 561899 – GIMP can't save to mounted filesystem if file 
exists

	* plug-ins/file-uri/uri-backend-gvfs.c (copy_uri): pass the
	G_FILE_COPY_OVERWRITE flag to g_file_copy().


svn path=/trunk/; revision=27709
This commit is contained in:
Sven Neumann 2008-11-22 16:55:32 +00:00 committed by Sven Neumann
parent 4742f2cef1
commit 3271c2a698
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-11-22 Sven Neumann <sven@gimp.org>
Bug 561899 GIMP can't save to mounted filesystem if file exists
* plug-ins/file-uri/uri-backend-gvfs.c (copy_uri): pass the
G_FILE_COPY_OVERWRITE flag to g_file_copy().
2008-11-21 Sven Neumann <sven@gimp.org>
* app/tools/gimpdrawtool.[ch]: removed unused methods

View File

@ -298,7 +298,7 @@ copy_uri (const gchar *src_uri,
progress.mode = mode;
success = g_file_copy (src_file, dest_file, 0, NULL,
success = g_file_copy (src_file, dest_file, G_FILE_COPY_OVERWRITE, NULL,
uri_progress_callback, &progress,
error);