diff options
author | Leena Miettinen <riitta-leena.miettinen@qt.io> | 2022-02-16 18:09:22 +0100 |
---|---|---|
committer | Leena Miettinen <riitta-leena.miettinen@qt.io> | 2022-02-17 12:12:02 +0000 |
commit | 99ceebe69503f737b7c6574a8427eceee2591c51 (patch) | |
tree | 3da79714ce4166d08ea8c018163593a5a8cb413a /src/plugins/debugger/debuggeractions.cpp | |
parent | eb8d84f6de49fbe9763887bbb3e201086ac7922f (diff) | |
download | qt-creator-99ceebe69503f737b7c6574a8427eceee2591c51.tar.gz |
Debugger: Remove extra words from tooltips
Task-number: QTCREATORBUG-27055
Change-Id: Ic7b447da2de3267ad897cdef0275a2faa4474099
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/debugger/debuggeractions.cpp')
-rw-r--r-- | src/plugins/debugger/debuggeractions.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
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("<html><head/><body><p>" + tr( @@ -421,7 +421,7 @@ DebuggerSettings::DebuggerSettings() useAnnotationsInMainEditor.setSettingsKey(debugModeGroup, "UseAnnotations"); useAnnotationsInMainEditor.setLabelText(tr("Use annotations in main editor when debugging")); - useAnnotationsInMainEditor.setToolTip(tr("<p>Checking this will show simple variable values " + useAnnotationsInMainEditor.setToolTip(tr("<p>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("<p>Checking this will enable tooltips for variable " + useToolTipsInMainEditor.setToolTip(tr("<p>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("<p>Checking this will enable tooltips in the locals " + useToolTipsInLocalsView.setToolTip(tr("<p>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("<p>Checking this will enable tooltips in the breakpoints " + useToolTipsInBreakpointsView.setToolTip(tr("<p>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("<p>Checking this will enable tooltips in the stack " + useToolTipsInStackView.setToolTip(tr("<p>Enables tooltips in the stack " "view during debugging.")); useToolTipsInStackView.setDefaultValue(true); |