-rw-r--r-- | library/filemanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/filemanager.cpp b/library/filemanager.cpp index c51ca2f..eff8429 100644 --- a/library/filemanager.cpp +++ b/library/filemanager.cpp @@ -314,13 +314,13 @@ bool FileManager::renameFile( const QString & src, const QString & dest ) { return true; } } return false; } - +/* bool FileManager::copyFile( const QString & src, const QString & dest ) { bool success = true; struct stat status; int read_fd=0; int write_fd=0; struct stat stat_buf; @@ -374,13 +374,13 @@ bool FileManager::renameFile( const QString & src, const QString & dest ) { if(QFile::remove(src) ) { return true; } } return false; } - +*/ /*! Opens the document specified by \a f as a readable QIODevice. The caller must delete the return value. Returns 0 if the operation fails. |