summaryrefslogtreecommitdiffstats
path: root/installerbuilder
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@nokia.com>2011-08-30 10:56:13 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-08-31 13:00:02 +0200
commit40f000f2434336ff98b5098c0fc0242ff51527af (patch)
tree76a76fc50dae1fba0ec3c6df9804e24673ee6fc6 /installerbuilder
parente365ebc4211b33a416bccb549abc5797c86e1420 (diff)
only return true is all requirements are set
if it cannot fetch the data from the repository, it should handle this as no available updates. Change-Id: I4d141399077d8c6212499f2beefc9de1862bf67d Reviewed-on: http://codereview.qt.nokia.com/3863 Reviewed-by: Tim Jenssen <tim.jenssen@nokia.com>
Diffstat (limited to 'installerbuilder')
-rw-r--r--installerbuilder/libinstaller/updater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/installerbuilder/libinstaller/updater.cpp b/installerbuilder/libinstaller/updater.cpp
index c2730771c..ace473580 100644
--- a/installerbuilder/libinstaller/updater.cpp
+++ b/installerbuilder/libinstaller/updater.cpp
@@ -94,7 +94,7 @@ bool Updater::checkForUpdates()
}
verbose() << doc.toString(4) << std::endl;
+ return true;
}
-
- return true;
+ return false;
}