summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qfilesystemengine_unix.cpp
diff options
context:
space:
mode:
authorThomas Zander <t.zander@nokia.com>2010-09-23 11:33:38 +0200
committerThomas Zander <t.zander@nokia.com>2010-09-23 17:29:39 +0200
commit59491b5cb9c7dc54f701ba19185fede58a7355db (patch)
tree424105b5e3b8aa176400e5a651be76d7ad526392 /src/corelib/io/qfilesystemengine_unix.cpp
parent52090d6e292c165bfb08140c28068b796e295b10 (diff)
Mark the QFileSystemEngine::copyFile/unix done.
There is no native implementation for this (the old FSFilesystemEngine never had one either) so no code to move. Reviewed-by: João Abecasis
Diffstat (limited to 'src/corelib/io/qfilesystemengine_unix.cpp')
-rw-r--r--src/corelib/io/qfilesystemengine_unix.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp
index 060cf25461..c17d4c72a4 100644
--- a/src/corelib/io/qfilesystemengine_unix.cpp
+++ b/src/corelib/io/qfilesystemengine_unix.cpp
@@ -531,7 +531,10 @@ bool QFileSystemEngine::createLink(const QFileSystemEntry &source, const QFileSy
//static
bool QFileSystemEngine::copyFile(const QFileSystemEntry &source, const QFileSystemEntry &target)
{
- return false; // TODO implement;
+ Q_UNUSED(source);
+ Q_UNUSED(target);
+ // # we can implement this using sendfile(2)
+ return false;
}
//static