summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/breakwindow.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-07-30 16:44:16 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2009-07-30 16:44:16 +0200
commit1cad9748cc2e41e26b2b56b87a5a1f6865b70b44 (patch)
tree5bcf80248e152ea004096ca2941c189f99471def /src/plugins/debugger/breakwindow.cpp
parent8cadee7b99d0ed8aa25407c1f5944fe57acddd28 (diff)
downloadqt-creator-1cad9748cc2e41e26b2b56b87a5a1f6865b70b44.tar.gz
Fixed tr()-glitches.
Diffstat (limited to 'src/plugins/debugger/breakwindow.cpp')
-rw-r--r--src/plugins/debugger/breakwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/debugger/breakwindow.cpp b/src/plugins/debugger/breakwindow.cpp
index 92d342983a..543a9e3bd6 100644
--- a/src/plugins/debugger/breakwindow.cpp
+++ b/src/plugins/debugger/breakwindow.cpp
@@ -136,10 +136,10 @@ void BreakWindow::contextMenuEvent(QContextMenuEvent *ev)
const int rowCount = itemModel->rowCount();
- QAction *deleteAction = new QAction(tr("Delete breakpoint", 0, si.size()), &menu);
+ QAction *deleteAction = new QAction(tr("Delete breakpoint"), &menu);
deleteAction->setEnabled(si.size() > 0);
- QAction *deleteAllAction = new QAction(tr("Delete all breakpoints", 0, si.size()), &menu);
+ QAction *deleteAllAction = new QAction(tr("Delete all breakpoints"), &menu);
deleteAllAction->setEnabled(si.size() > 0);
// Delete by file: Find indexes of breakpoints of the same file
@@ -168,7 +168,7 @@ void BreakWindow::contextMenuEvent(QContextMenuEvent *ev)
alwaysAdjustAction->setCheckable(true);
alwaysAdjustAction->setChecked(m_alwaysResizeColumnsToContents);
- QAction *editConditionAction = new QAction(tr("Edit condition...", 0, si.size()), &menu);
+ QAction *editConditionAction = new QAction(tr("Edit condition..."), &menu);
editConditionAction->setEnabled(si.size() > 0);
QAction *synchronizeAction = new QAction(tr("Synchronize breakpoints"), &menu);