From 5e4f9c018eb6c782bb095f8e18ca58c4dd3344a5 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Thu, 14 Feb 2013 16:53:28 +0100 Subject: [PATCH] QmlDesigner.NodeInstances: error message if puppet does not start If the qmlpuppet is present but does not start we need a different error message. Change-Id: Ifb161d9d1f0e176d5c1625f38f0c2da47a90bdf5 Reviewed-by: Marco Bubke --- .../designercore/instances/nodeinstanceserverproxy.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp b/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp index 0617a3778f..604bb3855a 100644 --- a/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp +++ b/src/plugins/qmldesigner/designercore/instances/nodeinstanceserverproxy.cpp @@ -229,7 +229,11 @@ NodeInstanceServerProxy::NodeInstanceServerProxy(NodeInstanceView *nodeInstanceV } } else { - QMessageBox::warning(0, tr("Cannot Start QML Puppet Executable"), missingQmlPuppetErrorMessage(applicationPath)); + QMessageBox::warning(0, tr("Cannot Start QML Puppet Executable"), + tr("The executable of the QML Puppet process (%1) cannot be started. " + "Please check your installation. " + "QML Puppet is a process which runs in the background to render the items."). + arg(applicationPath)); } m_localServer->close(); -- GitLab