forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/13.0' into qds/dev
Change-Id: I6dcba6ce7a9dec1c14dd6ad27732337c60eb7def
This commit is contained in:
@@ -407,9 +407,10 @@ void LldbEngine::handleResponse(const QString &response)
|
||||
const QString name = item.name();
|
||||
if (name == "result") {
|
||||
QString msg = item["status"].data();
|
||||
if (!msg.isEmpty())
|
||||
if (!msg.isEmpty()) {
|
||||
msg[0] = msg.at(0).toUpper();
|
||||
showStatusMessage(msg);
|
||||
showStatusMessage(msg);
|
||||
}
|
||||
|
||||
int token = item["token"].toInt();
|
||||
showMessage(QString("%1^").arg(token), LogOutput);
|
||||
|
||||
Reference in New Issue
Block a user