From 9e066c7b17ecc7399a94763003b23e751bab93e5 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 13 Sep 2017 15:56:47 +0200 Subject: Move HTML out of translated strings Change-Id: I4664427086619f33e9a882eb3f0a5f2f52e1b42a Reviewed-by: Jochen Becher Reviewed-by: Leena Miettinen Reviewed-by: Friedemann Kleint Reviewed-by: Eike Ziller --- src/plugins/debugger/breakhandler.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/plugins/debugger/breakhandler.cpp') diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index df579b8a60..3488be4304 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -447,9 +447,9 @@ BreakpointDialog::BreakpointDialog(Breakpoint b, QWidget *parent) m_labelUseFullPath->setToolTip(pathToolTip); const QString moduleToolTip = - tr("

Specifying the module (base name of the library or executable) " - "for function or file type breakpoints can significantly speed up " - "debugger startup times (CDB, LLDB)."); + "

" + tr("Specifying the module (base name of the library or executable) " + "for function or file type breakpoints can significantly speed up " + "debugger startup times (CDB, LLDB).") + "

"; m_lineEditModule = new QLineEdit(groupBoxAdvanced); m_lineEditModule->setToolTip(moduleToolTip); m_labelModule = new QLabel(tr("&Module:"), groupBoxAdvanced); @@ -457,8 +457,8 @@ BreakpointDialog::BreakpointDialog(Breakpoint b, QWidget *parent) m_labelModule->setToolTip(moduleToolTip); const QString commandsToolTip = - tr("

Debugger commands to be executed when the breakpoint is hit. " - "This feature is only available for GDB."); + "

" + tr("Debugger commands to be executed when the breakpoint is hit. " + "This feature is only available for GDB.") + "

"; m_textEditCommands = new SmallTextEdit(groupBoxAdvanced); m_textEditCommands->setToolTip(commandsToolTip); m_labelCommands = new QLabel(tr("&Commands:"), groupBoxAdvanced); -- cgit v1.2.1