Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
378cc91c
Commit
378cc91c
authored
Mar 25, 2014
by
sylvanbasilisk
Browse files
delete debug printf statements
this should fix the compilation issue mentioned by mattkelly
parent
610f0b6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
cockatrice/src/filtertreemodel.cpp
View file @
378cc91c
...
...
@@ -262,13 +262,8 @@ bool FilterTreeModel::removeRows(int row, int count, const QModelIndex & parent)
if
(
node
==
NULL
||
last
>=
node
->
childCount
())
return
false
;
printf
(
"delete children in %s
\n
"
,
node
->
textCStr
());
fflush
(
stdout
);
for
(
i
=
0
;
i
<
count
;
i
++
)
{
printf
(
" delete %d
\n
"
,
i
);
fflush
(
stdout
);
for
(
i
=
0
;
i
<
count
;
i
++
)
node
->
deleteAt
(
row
);
}
if
(
node
!=
fTree
&&
node
->
childCount
()
<
1
)
return
removeRow
(
parent
.
row
(),
parent
.
parent
());
...
...
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