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
d7745b3c
Commit
d7745b3c
authored
Feb 11, 2010
by
hjk
Browse files
debugger: remove accidentally checked-in debugging code
parent
c93e9630
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/breakhandler.cpp
View file @
d7745b3c
...
...
@@ -336,11 +336,9 @@ void BreakHandler::clear()
int
BreakHandler
::
findBreakpoint
(
const
BreakpointData
&
needle
)
{
// Search a breakpoint we might refer to.
qDebug
()
<<
"NEEDLE: "
<<
needle
.
toString
();
for
(
int
index
=
0
;
index
!=
size
();
++
index
)
{
const
BreakpointData
*
data
=
at
(
index
);
// Clear hit.
qDebug
()
<<
" TEST: "
<<
data
->
toString
();
if
(
data
->
bpNumber
==
needle
.
bpNumber
)
return
index
;
// At least at a position we were looking for.
...
...
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