From cda5af041506bbd890e6cce4c89a05c7d393cdb3 Mon Sep 17 00:00:00 2001 From: Jacek Tomasiak Date: Sun, 10 Feb 2013 21:01:32 +0100 Subject: [PATCH] enabled actual removal of files --- core/co.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/co.cpp b/core/co.cpp index 112ba7c..0558bbe 100644 --- a/core/co.cpp +++ b/core/co.cpp @@ -382,8 +382,8 @@ bool CO::copyFile(const QString &filePath, const QString &newPath) bool CO::removeFile(const QString &filePath) { qDebug() << "remove" << filePath; - //return QFile::remove(filePath); - return true; + return QFile::remove(filePath); +// return true; } bool CO::writeXML(const QString &filePath)