summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-04-27 11:25:29 +1000
committerAlan Alpert <alan.alpert@nokia.com>2011-05-03 11:17:23 +1000
commitbf876c83fef43ea51583fe62d1658d25367a6505 (patch)
tree1341b74aba594cedce893b9bb67473f9865243a3
parent248395fc5633c4d82b4cf14a3e19035f7b6c8fce (diff)
downloadqtdoc-bf876c83fef43ea51583fe62d1658d25367a6505.tar.gz
Improve QtDemo error message
The QML examples don't need to be built, but they do need to be installed. Change-Id: Iefad697b16db1b38a6ecad54dbed770051b77a8e Task-number: QTBUG-18534 Reviewed-by: Martin Jones
-rw-r--r--demos/qtdemo/menumanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp
index 3f01d26f..ba3ab093 100644
--- a/demos/qtdemo/menumanager.cpp
+++ b/demos/qtdemo/menumanager.cpp
@@ -325,7 +325,7 @@ void MenuManager::launchExample(const QString &name)
bool success = QDesktopServices::openUrl(QUrl::fromLocalFile(executable));
if (!success){
QMessageBox::critical(0, tr("Failed to launch the example"),
- tr("Could not launch the example. Ensure that it has been built."),
+ tr("Could not launch the example. Ensure that it has been built and installed."),
QMessageBox::Cancel);
}
#else // Not mac. To not break anything regarding dll's etc, keep it the way it was before: