forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.9'
Change-Id: I7d1912cd5c4d824fd40d3454c5f1bb796f2c21d8
This commit is contained in:
@@ -2952,7 +2952,7 @@ void GdbEngine::handleThreadInfo(const DebuggerResponse &response)
|
||||
if (response.resultClass == ResultDone) {
|
||||
ThreadsHandler *handler = threadsHandler();
|
||||
handler->setThreads(response.data);
|
||||
updateState(false); // Adjust Threads combobox.
|
||||
updateState(); // Adjust Threads combobox.
|
||||
if (boolSetting(ShowThreadNames)) {
|
||||
runCommand({"threadnames " + action(MaximalStackDepth)->value().toString(),
|
||||
Discardable, CB(handleThreadNames)});
|
||||
@@ -2992,7 +2992,7 @@ void GdbEngine::handleThreadNames(const DebuggerResponse &response)
|
||||
thread.name = decodeData(name["value"].data(), name["valueencoded"].data());
|
||||
handler->updateThread(thread);
|
||||
}
|
||||
updateState(false);
|
||||
updateState();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user