From 0e84c8892d98adb61c16d6a9acfee6abfa1a7abe Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 4 Oct 2018 15:55:42 +0200 Subject: [PATCH] Debugger: Do not double quote in tooltips Instead of e.g. 'Interrupt "GDB for "test""' use 'Interrupt GDB for "test"' for button tooltips. Change-Id: Ibe08e0007800332696dbc7f298bf5119ea8e5338 Reviewed-by: Christian Stenger --- src/plugins/debugger/debuggerplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 64a085cd9e0..81c657345bc 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1501,8 +1501,8 @@ void DebuggerPluginPrivate::updatePresetState() m_startAction.setVisible(false); QString currentDisplayName = currentEngine->displayName(); - m_interruptAction.setToolTip(tr("Interrupt \"%1\"").arg(currentDisplayName)); - m_continueAction.setToolTip(tr("Continue \"%1\"").arg(currentDisplayName)); + m_interruptAction.setToolTip(tr("Interrupt %1").arg(currentDisplayName)); + m_continueAction.setToolTip(tr("Continue %1").arg(currentDisplayName)); m_debugWithoutDeployAction.setEnabled(canRun);