summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/lib7z_facade.cpp
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2014-09-03 15:01:44 +0200
committerKarsten Heimrich <karsten.heimrich@digia.com>2014-09-05 10:53:15 +0200
commitb73ef0fa7e24e48204a4560b03eb95721bcd2d4c (patch)
tree59952a0401b2547ef6307e8287d5180fc317304b /src/libs/installer/lib7z_facade.cpp
parentb7fba68fc38f92099a7dd8ce25a4ef31f2a024ea (diff)
Fix some std::cout usage.
Fixes missing timestamps and some propably wrong conversion. Change-Id: I6106e1ea61d0840d132dd3b44cd746f023e795af Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'src/libs/installer/lib7z_facade.cpp')
-rw-r--r--src/libs/installer/lib7z_facade.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libs/installer/lib7z_facade.cpp b/src/libs/installer/lib7z_facade.cpp
index bce30e2d9..478743978 100644
--- a/src/libs/installer/lib7z_facade.cpp
+++ b/src/libs/installer/lib7z_facade.cpp
@@ -106,7 +106,6 @@ bool CreateHardLinkWrapper(const QString &dest, const QString &file)
#include <sys/stat.h>
#endif
-#include <iostream>
#include <memory>
#include <cassert>
@@ -1409,7 +1408,7 @@ void Lib7z::createArchive(QFileDevice* archive, const QStringList &sourcePaths,
qPrintable(file.errorString()));
}
} catch (const char *err) {
- std::cout << err << std::endl;
+ qDebug() << err;
throw SevenZipException(err);
} catch (const QInstaller::Error &err) {
throw SevenZipException(err.message());