Cppcheck warning.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-12-21 14:20:42 +02:00
parent 5153e997d1
commit a2cfecd2f1

View file

@ -126,14 +126,11 @@ void VPE::VPropertySet::removeProperty(VProperty* prop, bool delete_property)
removePropertyFromSet(prop); removePropertyFromSet(prop);
// Remove from parent and optionally delete // Remove from parent and optionally delete
if (prop) prop->setParent(NULL);
{
prop->setParent(NULL);
if (delete_property) if (delete_property)
{ {
delete prop; delete prop;
}
} }
} }