From 99ceebe69503f737b7c6574a8427eceee2591c51 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 16 Feb 2022 18:09:22 +0100 Subject: Debugger: Remove extra words from tooltips Task-number: QTCREATORBUG-27055 Change-Id: Ic7b447da2de3267ad897cdef0275a2faa4474099 Reviewed-by: hjk --- src/plugins/debugger/debuggeractions.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/plugins/debugger/debuggeractions.cpp') diff --git a/src/plugins/debugger/debuggeractions.cpp b/src/plugins/debugger/debuggeractions.cpp index bab0d00133..736869cc59 100644 --- a/src/plugins/debugger/debuggeractions.cpp +++ b/src/plugins/debugger/debuggeractions.cpp @@ -120,7 +120,7 @@ DebuggerSettings::DebuggerSettings() forceLoggingToConsole.setSettingsKey(debugModeGroup, "ForceLoggingToConsole"); forceLoggingToConsole.setLabelText(tr("Force logging to console")); - forceLoggingToConsole.setToolTip(tr("This sets QT_LOGGING_TO_CONSOLE=1 in the environment " + forceLoggingToConsole.setToolTip(tr("Sets QT_LOGGING_TO_CONSOLE=1 in the environment " "of the debugged program, preventing storing debug output " "in system logs.")); @@ -165,7 +165,7 @@ DebuggerSettings::DebuggerSettings() CommonOptionsPage::msgSetBreakpointAtFunction(Constants::CRT_DEBUG_REPORT)); cdbBreakOnCrtDbgReport.setToolTip( CommonOptionsPage::msgSetBreakpointAtFunctionToolTip(Constants::CRT_DEBUG_REPORT, - tr("This is useful to catch runtime error messages for example caused by assert()."))); + tr("Catches runtime error messages caused by assert(), for example."))); useCdbConsole.setSettingsKey(cdbSettingsGroup, "CDB_Console"); useCdbConsole.setToolTip("

" + tr( @@ -421,7 +421,7 @@ DebuggerSettings::DebuggerSettings() useAnnotationsInMainEditor.setSettingsKey(debugModeGroup, "UseAnnotations"); useAnnotationsInMainEditor.setLabelText(tr("Use annotations in main editor when debugging")); - useAnnotationsInMainEditor.setToolTip(tr("

Checking this will show simple variable values " + useAnnotationsInMainEditor.setToolTip(tr("

Shows simple variable values " "as annotations in the main editor during debugging.")); useAnnotationsInMainEditor.setDefaultValue(true); @@ -440,7 +440,7 @@ DebuggerSettings::DebuggerSettings() useToolTipsInMainEditor.setSettingsKey(debugModeGroup, "UseToolTips"); useToolTipsInMainEditor.setLabelText(tr("Use tooltips in main editor when debugging")); - useToolTipsInMainEditor.setToolTip(tr("

Checking this will enable tooltips for variable " + useToolTipsInMainEditor.setToolTip(tr("

Enables tooltips for variable " "values during debugging. Since this can slow down debugging and " "does not provide reliable information as it does not use scope " "information, it is switched off by default.")); @@ -448,17 +448,17 @@ DebuggerSettings::DebuggerSettings() useToolTipsInLocalsView.setSettingsKey(debugModeGroup, "UseToolTipsInLocalsView"); useToolTipsInLocalsView.setLabelText(tr("Use Tooltips in Locals View when Debugging")); - useToolTipsInLocalsView.setToolTip(tr("

Checking this will enable tooltips in the locals " + useToolTipsInLocalsView.setToolTip(tr("

Enables tooltips in the locals " "view during debugging.")); useToolTipsInBreakpointsView.setSettingsKey(debugModeGroup, "UseToolTipsInBreakpointsView"); useToolTipsInBreakpointsView.setLabelText(tr("Use Tooltips in Breakpoints View when Debugging")); - useToolTipsInBreakpointsView.setToolTip(tr("

Checking this will enable tooltips in the breakpoints " + useToolTipsInBreakpointsView.setToolTip(tr("

Enables tooltips in the breakpoints " "view during debugging.")); useToolTipsInStackView.setSettingsKey(debugModeGroup, "UseToolTipsInStackView"); useToolTipsInStackView.setLabelText(tr("Use Tooltips in Stack View when Debugging")); - useToolTipsInStackView.setToolTip(tr("

Checking this will enable tooltips in the stack " + useToolTipsInStackView.setToolTip(tr("

Enables tooltips in the stack " "view during debugging.")); useToolTipsInStackView.setDefaultValue(true); -- cgit v1.2.1