From: hjk Date: Wed, 11 May 2011 12:43:28 +0000 (+0200) Subject: debugger: remove spurious parantheses in user visible string X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=ae730dbe7cd0857e0b5fd815a9e536e89d1d7913;p=qt-creator-jp%2Fqt-creator-jp.git debugger: remove spurious parantheses in user visible string --- diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp index c37bba5f31..8aabf37478 100644 --- a/src/plugins/debugger/breakwindow.cpp +++ b/src/plugins/debugger/breakwindow.cpp @@ -118,8 +118,8 @@ BreakpointDialog::BreakpointDialog(unsigned engineCapabilities, QWidget *parent) << tr("Break when a new process is forked") << tr("Break when a new process is executed") << tr("Break when a system call is executed") - << tr("Break on data access at fixed address)") - << tr("Break on data access at address given by expression)"); + << tr("Break on data access at fixed address") + << tr("Break on data access at address given by expression"); QTC_ASSERT(types.size() == WatchpointAtExpression, return; ) m_ui.comboBoxType->addItems(types); m_ui.pathChooserFileName->setExpectedKind(Utils::PathChooser::File);