Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
31e98bf4
Commit
31e98bf4
authored
Sep 14, 2010
by
dt
Browse files
Debugger: Fix en/disabling of "Delete All Breakpoints"
Reviewed-By: hjk
parent
e06a03ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/breakwindow.cpp
View file @
31e98bf4
...
...
@@ -164,7 +164,7 @@ void BreakWindow::contextMenuEvent(QContextMenuEvent *ev)
deleteAction
->
setEnabled
(
si
.
size
()
>
0
);
QAction
*
deleteAllAction
=
new
QAction
(
tr
(
"Delete All Breakpoints"
),
&
menu
);
deleteAllAction
->
setEnabled
(
si
.
size
()
>
0
);
deleteAllAction
->
setEnabled
(
model
()
->
rowCount
()
>
0
);
// Delete by file: Find indices of breakpoints of the same file.
QAction
*
deleteByFileAction
=
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment