summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/qtpatchoperation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'installerbuilder/libinstaller/qtpatchoperation.cpp')
-rw-r--r--installerbuilder/libinstaller/qtpatchoperation.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/installerbuilder/libinstaller/qtpatchoperation.cpp b/installerbuilder/libinstaller/qtpatchoperation.cpp
index 1cd5c3538..5f78b52c7 100644
--- a/installerbuilder/libinstaller/qtpatchoperation.cpp
+++ b/installerbuilder/libinstaller/qtpatchoperation.cpp
@@ -37,7 +37,6 @@
#endif
#include "constants.h"
-#include "common/utils.h"
#include "packagemanagercore.h"
#include <QMap>
@@ -45,7 +44,7 @@
#include <QFile>
#include <QTextStream>
#include <QDir>
-#include <QDebug>
+#include <QtCore/QDebug>
using namespace QInstaller;
@@ -250,8 +249,7 @@ bool QtPatchOperation::performOperation()
it.next();
bool isPatched = QtPatch::patchBinaryFile(&file, it.key(), it.value());
if (!isPatched) {
- QInstaller::verbose() << "qpatch: warning: file '" << qPrintable(fileName)
- << "' could not patched" << std::endl;
+ qDebug() << QString::fromLatin1("qpatch: warning: file '%1' could not patched").arg(fileName);
}
}
} //foreach (QString fileName, filesToPatch)