diff options
Diffstat (limited to 'source/Core/ValueObjectDynamicValue.cpp')
| -rw-r--r-- | source/Core/ValueObjectDynamicValue.cpp | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/source/Core/ValueObjectDynamicValue.cpp b/source/Core/ValueObjectDynamicValue.cpp index 0ac86a68f19f..65deba096d82 100644 --- a/source/Core/ValueObjectDynamicValue.cpp +++ b/source/Core/ValueObjectDynamicValue.cpp @@ -419,6 +419,22 @@ ValueObjectDynamicValue::GetPreferredDisplayLanguage ()  }  bool +ValueObjectDynamicValue::IsSyntheticChildrenGenerated () +{ +    if (m_parent) +        return m_parent->IsSyntheticChildrenGenerated(); +    return false; +} + +void +ValueObjectDynamicValue::SetSyntheticChildrenGenerated (bool b) +{ +    if (m_parent) +        m_parent->SetSyntheticChildrenGenerated(b); +    this->ValueObject::SetSyntheticChildrenGenerated(b); +} + +bool  ValueObjectDynamicValue::GetDeclaration (Declaration &decl)  {      if (m_parent)  | 
