Commit 378cc91c authored by sylvanbasilisk's avatar sylvanbasilisk
Browse files

delete debug printf statements

this should fix the compilation issue mentioned by mattkelly
parent 610f0b6f
......@@ -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());
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment