debugger: remove duplicated 'completeSuffix' entry in QFileInfo dumper

This commit is contained in:
hjk
2009-07-14 18:14:49 +02:00
parent 3c6793e4f3
commit a16aa2e0d6
3 changed files with 15 additions and 1 deletions

View File

@@ -859,6 +859,13 @@ void WatchModel::insertBulkData(const QList<WatchData> &list)
// overwrite existing items
Iterator it = newList.begin();
int oldCount = newList.size() - list.size();
if (oldCount != parent->children.size())
qDebug() //<< "LIST:" << list.keys()
<< "NEWLIST: " << newList.keys()
<< "OLD COUNT: " << oldCount
<< "P->CHILDREN.SIZE: " << parent->children.size()
<< "NEWLIST SIZE: " << newList.size()
<< "LIST SIZE: " << list.size();
QTC_ASSERT(oldCount == parent->children.size(), return);
for (int i = 0; i < oldCount; ++i, ++it)
parent->children[i]->setData(*it);