forked from qt-creator/qt-creator
Debugger: Don't manually break the connection error message
The message window can do that by itself and in other places we may want to print the whole message in one line. Change-Id: I5f0891c7b81717182d17b83f5a62ab06ad168801 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -429,8 +429,7 @@ void QmlEngine::connectionStartupFailed()
|
||||
|
||||
void QmlEngine::appStartupFailed(const QString &errorMessage)
|
||||
{
|
||||
QString error = tr("Could not connect to the in-process QML debugger."
|
||||
"\n%1").arg(errorMessage);
|
||||
QString error = tr("Could not connect to the in-process QML debugger. %1").arg(errorMessage);
|
||||
|
||||
if (isMasterEngine()) {
|
||||
QMessageBox *infoBox = new QMessageBox(ICore::mainWindow());
|
||||
|
||||
Reference in New Issue
Block a user