OSDN Git Service

debugger: remove spurious parantheses in user visible string
authorhjk <qtc-committer@nokia.com>
Wed, 11 May 2011 12:43:28 +0000 (14:43 +0200)
committerhjk <qtc-committer@nokia.com>
Wed, 11 May 2011 12:43:28 +0000 (14:43 +0200)
src/plugins/debugger/breakwindow.cpp

index c37bba5..8aabf37 100644 (file)
@@ -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);