Fixed crash on duplicate

This commit is contained in:
andreja6
2018-10-24 11:07:27 -07:00
parent 07a2eb4d98
commit 2c65001536
2 changed files with 4 additions and 3 deletions

View File

@@ -12,9 +12,10 @@ Instance::Instance(void)
Instance::Instance(const Instance &oinst)
{
setParent(oinst.parent);
name = oinst.name;
className = oinst.className;
//setParent(oinst.parent);
}