Remove the __parent field in the DynamicObject class

refs #7748
This commit is contained in:
Gunnar Beutner 2014-11-27 06:31:43 +01:00
parent 443ae0f298
commit 358d91e912
2 changed files with 0 additions and 4 deletions

View File

@ -35,8 +35,6 @@ public:
abstract class DynamicObject
{
[protected] Object::Ptr __parent (ParentScope);
[config, internal] String __name (Name);
[config] String name (ShortName) {
get {{{

View File

@ -177,8 +177,6 @@ DynamicObject::Ptr ConfigItem::Commit(bool discard)
if (discard)
m_Expression.reset();
dobj->SetParentScope(Object::Ptr());
String name = m_Name;
NameComposer *nc = dynamic_cast<NameComposer *>(type.get());