diff options
Diffstat (limited to 'configmgr/source/childaccess.cxx')
-rw-r--r-- | configmgr/source/childaccess.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr/source/childaccess.cxx b/configmgr/source/childaccess.cxx index d5a8904679fb..11bb5b016789 100644 --- a/configmgr/source/childaccess.cxx +++ b/configmgr/source/childaccess.cxx @@ -234,7 +234,7 @@ void ChildAccess::setProperty( case Node::KIND_PROPERTY: { PropertyNode * prop = dynamic_cast< PropertyNode * >(node_.get()); - type = prop->getType(); + type = prop->getStaticType(); nillable = prop->isNillable(); } break; @@ -257,7 +257,7 @@ void ChildAccess::setProperty( { LocalizedPropertyNode * locprop = dynamic_cast< LocalizedPropertyNode * >(getParentNode().get()); - type = locprop->getType(); + type = locprop->getStaticType(); nillable = locprop->isNillable(); } break; |