summaryrefslogtreecommitdiffstats
path: root/installerbuilder
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2011-09-05 15:38:37 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-09-05 16:31:36 +0200
commitc73d7ea1aa9958ad1ffaf86e78a045cf010e2f1b (patch)
treed6c3f22038d523c7f36cc8146d3d8921121e213a /installerbuilder
parenta0f1d0a36fe068cd186eed27336435a930262edc (diff)
fix that the checkupdate argument makes the right output
Change-Id: Ia98566cf1047077d86db519414930241d5cb00ca Reviewed-on: http://codereview.qt.nokia.com/4210 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Karsten Heimrich <karsten.heimrich@nokia.com> Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
Diffstat (limited to 'installerbuilder')
-rw-r--r--installerbuilder/libinstaller/updater.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/installerbuilder/libinstaller/updater.cpp b/installerbuilder/libinstaller/updater.cpp
index ace473580..05cdb4d29 100644
--- a/installerbuilder/libinstaller/updater.cpp
+++ b/installerbuilder/libinstaller/updater.cpp
@@ -40,6 +40,8 @@
#include <QtXml/QDomDocument>
+#include <iostream>
+
using namespace QInstaller;
using namespace QInstallerCreator;
@@ -93,8 +95,7 @@ bool Updater::checkForUpdates()
root.appendChild(update);
}
- verbose() << doc.toString(4) << std::endl;
- return true;
+ std::cout << doc.toString(4) << std::endl;
}
return false;
}