delete debug printf statements

this should fix the compilation issue mentioned by mattkelly
This commit is contained in:
sylvanbasilisk 2014-03-25 00:07:58 +00:00
parent 610f0b6f6f
commit 378cc91c17

View file

@ -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());