QmlDesigner: add puppet mode and process id information

Change-Id: I8e3bf68c5e4ae3bcc7eb446c9321667afc2428ac
Reviewed-by: Marco Bubke <marco.bubke@digia.com>
This commit is contained in:
Tim Jenssen
2014-07-17 14:15:14 +02:00
parent b9063569db
commit 76f57922ea

View File

@@ -161,7 +161,8 @@ QProcess *PuppetCreator::puppetProcess(const QString &puppetPath,
if (!qgetenv("DEBUG_QML_PUPPET").isEmpty()) if (!qgetenv("DEBUG_QML_PUPPET").isEmpty())
QMessageBox::information(Core::ICore::dialogParent(), QMessageBox::information(Core::ICore::dialogParent(),
QStringLiteral("Puppet is starting ..."), QStringLiteral("Puppet is starting ..."),
QStringLiteral("You can now attach your debugger to the puppet.")); QStringLiteral("You can now attach your debugger to the %1 puppet with process id: %2.").arg(
puppetMode, QString::number(puppetProcess->processId())));
return puppetProcess; return puppetProcess;
} }