summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-05-23 10:27:31 +0200
committerhjk <hjk121@nokiamail.com>2013-05-23 15:07:21 +0200
commit4786cee969dc005b24214bca49476f8f9cf667fc (patch)
tree008f65624dcd19640aaa0fc176c10d6f8c391044
parent6f32c398a19b0a18a8d7540b9a9bb16993c88fe1 (diff)
downloadqt-creator-4786cee969dc005b24214bca49476f8f9cf667fc.tar.gz
Debugger: Issue "threadnames" command again
Was accidentally disabled in 066efcd6a60. Change-Id: I64de0609a254aa2914142a4f75105b4140b6ae5b Reviewed-by: Eike Ziller <eike.ziller@digia.com>
-rw-r--r--src/plugins/debugger/gdb/gdbengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp
index 7231118897..8d77d53e1d 100644
--- a/src/plugins/debugger/gdb/gdbengine.cpp
+++ b/src/plugins/debugger/gdb/gdbengine.cpp
@@ -3741,7 +3741,7 @@ void GdbEngine::handleThreadInfo(const GdbResponse &response)
selectThread(other);
}
updateViews(); // Adjust Threads combobox.
- if (false && m_hasInferiorThreadList && debuggerCore()->boolSetting(ShowThreadNames)) {
+ if (m_hasInferiorThreadList && debuggerCore()->boolSetting(ShowThreadNames)) {
postCommand("threadnames " +
debuggerCore()->action(MaximalStackDepth)->value().toByteArray(),
Discardable, CB(handleThreadNames));