[f-spot] Use CopyRecursive as extension method
- From: Ruben Vermeersch <rubenv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [f-spot] Use CopyRecursive as extension method
- Date: Wed, 19 May 2010 09:31:20 +0000 (UTC)
commit a46f0103eed359a29c0cfbfd01f348db5d835bb2
Author: Paul Wellner Bou <paul purecodes org>
Date: Wed May 19 11:25:37 2010 +0200
Use CopyRecursive as extension method
https://bugzilla.gnome.org/show_bug.cgi?id=619014
src/Utils/FileExtensions.cs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/Utils/FileExtensions.cs b/src/Utils/FileExtensions.cs
index 8f48877..8bfb3f7 100644
--- a/src/Utils/FileExtensions.cs
+++ b/src/Utils/FileExtensions.cs
@@ -40,7 +40,7 @@ namespace FSpot.Utils
GLib.File source_file = GLib.FileFactory.NewForPath (Path.Combine (source.Path, fi.Name));
GLib.File target_file = GLib.FileFactory.NewForPath (Path.Combine (target.Path, fi.Name));
Log.Debug (Catalog.GetString("CopyRecursive {0} -> {1}"), source_file.Path, target_file.Path);
- result = result && CopyRecursive(source_file, target_file, flags, cancellable, callback);
+ result = result && source_file.CopyRecursive(target_file, flags, cancellable, callback);
fi = fe.NextFile ();
}
fe.Close (cancellable);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]