Removed qdebug calls (forgot about those).

This commit is contained in:
Marek Kochanowicz 2014-07-03 11:14:51 +02:00
parent 0bfc408ea2
commit 851d2f061b

View file

@ -123,7 +123,6 @@ void CSMWorld::NestedTableModel::forwardRowsAboutToInserted(const QModelIndex& p
{ {
if (indexIsParent(parent)) if (indexIsParent(parent))
{ {
qDebug()<<"Adding new rows "<< first<<":"<<last;
beginInsertRows(QModelIndex(), first, last); beginInsertRows(QModelIndex(), first, last);
} }
} }
@ -132,7 +131,6 @@ void CSMWorld::NestedTableModel::forwardRowsInserted(const QModelIndex& parent,
{ {
if (indexIsParent(parent)) if (indexIsParent(parent))
{ {
qDebug()<<"rows added"<< first<<":"<<last;
endInsertRows(); endInsertRows();
} }
} }