1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-24 12:17:26 +01:00

see #2241 skip Deleted Objects library while building object registry for deduplication

This commit is contained in:
Vadim Kurland 2011-03-17 14:42:04 -07:00
parent aaa2d1f318
commit 8faa985158

View File

@ -320,6 +320,9 @@ void ObjectMaker::prepareForDeduplication(FWObject *root)
registerObject(sig, root);
}
if (Library::isA(root) && root->getId() == FWObjectDatabase::DELETED_OBJECTS_ID)
return;
for (FWObject::iterator it=root->begin(); it!=root->end(); ++it)
{
prepareForDeduplication(*it);