delete debug printf statements
this should fix the compilation issue mentioned by mattkelly
This commit is contained in:
parent
610f0b6f6f
commit
378cc91c17
1 changed files with 1 additions and 6 deletions
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue