diff options
author | Thomas Zander <t.zander@nokia.com> | 2010-09-23 09:33:38 (GMT) |
---|---|---|
committer | Thomas Zander <t.zander@nokia.com> | 2010-09-23 15:29:39 (GMT) |
commit | 59491b5cb9c7dc54f701ba19185fede58a7355db (patch) | |
tree | 424105b5e3b8aa176400e5a651be76d7ad526392 | |
parent | 52090d6e292c165bfb08140c28068b796e295b10 (diff) | |
download | Qt-59491b5cb9c7dc54f701ba19185fede58a7355db.zip Qt-59491b5cb9c7dc54f701ba19185fede58a7355db.tar.gz Qt-59491b5cb9c7dc54f701ba19185fede58a7355db.tar.bz2 |
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
-rw-r--r-- | src/corelib/io/qfilesystemengine_unix.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp index 060cf25..c17d4c7 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 |