[gthumb] Fix file_copy, file_move methods by ordering xfer_file args correctly
- From: Michael J. Chudobiak <mjc src gnome org>
- To: svn-commits-list gnome org
- Subject: [gthumb] Fix file_copy, file_move methods by ordering xfer_file args correctly
- Date: Tue, 2 Jun 2009 20:55:01 -0400 (EDT)
commit 5fe99d06a4dfd059bf26d9fb6a5d45c3a554e738
Author: Marc Pavot <marc pavot gmail com>
Date: Tue Jun 2 20:54:12 2009 -0400
Fix file_copy, file_move methods by ordering xfer_file args correctly
---
libgthumb/file-utils.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libgthumb/file-utils.c b/libgthumb/file-utils.c
index b8a47b5..1ccb547 100644
--- a/libgthumb/file-utils.c
+++ b/libgthumb/file-utils.c
@@ -607,7 +607,7 @@ file_copy (const char *from,
gboolean overwrite,
GError **error)
{
- return xfer_file (from, to, overwrite, FALSE, error);
+ return xfer_file (from, to, FALSE, overwrite, error);
}
@@ -617,7 +617,7 @@ file_move (const char *from,
gboolean overwrite,
GError **error)
{
- return xfer_file (from, to, overwrite, TRUE, error);
+ return xfer_file (from, to, TRUE, overwrite, error);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]