aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerplugin.cpp
diff options
context:
space:
mode:
authorEike Ziller <[email protected]>2023-07-11 14:14:40 +0200
committerEike Ziller <[email protected]>2023-07-13 06:09:27 +0000
commit77c7e26779a1ce9a6a47143a9c9e2225231af087 (patch)
tree943987985e49e205787dc63eefeeb6280fd80d89 /src/plugins/debugger/debuggerplugin.cpp
parentf16f09c390f5acb57ac038b76ace43a8bb58795c (diff)
Tasks: Show tool tips with information about the categories
When hovering an entry in the filter menu in the Issues view. Also remove some categories that shouldn't be there. Change-Id: Ifb367d69b9396c2fdc45b83ec5ffd88ac2f0eda7 Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r--src/plugins/debugger/debuggerplugin.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index b76eb6c932a..9e1217307f9 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -723,7 +723,9 @@ DebuggerPluginPrivate::DebuggerPluginPrivate(const QStringList &arguments)
// Task integration.
//: Category under which Analyzer tasks are listed in Issues view
- TaskHub::addCategory({ANALYZERTASK_ID, Tr::tr("Debugger")});
+ TaskHub::addCategory({ANALYZERTASK_ID,
+ Tr::tr("Valgrind"),
+ Tr::tr("Issues that the Valgrind tools found when analyzing the code.")});
const Context debuggerNotRunning(C_DEBUGGER_NOTRUNNING);
ICore::addAdditionalContext(debuggerNotRunning);
@@ -765,8 +767,9 @@ DebuggerPluginPrivate::DebuggerPluginPrivate(const QStringList &arguments)
act->setEnabled(false);
Command *cmd = ActionManager::registerAction(act, Constants::OPEN_MEMORY_EDITOR);
- TaskHub::addCategory({TASK_CATEGORY_DEBUGGER_DEBUGINFO, Tr::tr("Debug Information")});
- TaskHub::addCategory({TASK_CATEGORY_DEBUGGER_RUNTIME, Tr::tr("Debugger Runtime")});
+ TaskHub::addCategory({TASK_CATEGORY_DEBUGGER_RUNTIME,
+ Tr::tr("Debugger Runtime"),
+ Tr::tr("Issues with starting the debugger.")});
m_debuggerSettings.readSettings();