summaryrefslogtreecommitdiff
path: root/configmgr/source/childaccess.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/childaccess.cxx')
-rw-r--r--configmgr/source/childaccess.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/configmgr/source/childaccess.cxx b/configmgr/source/childaccess.cxx
index 7295f8908b1b..756bc21d1f9d 100644
--- a/configmgr/source/childaccess.cxx
+++ b/configmgr/source/childaccess.cxx
@@ -212,13 +212,13 @@ void ChildAccess::setProperty(
{
assert(localModifications != 0);
Type type = TYPE_ERROR;
- bool nillable = false;
+ bool isNillable = false;
switch (node_->kind()) {
case Node::KIND_PROPERTY:
{
PropertyNode * prop = static_cast< PropertyNode * >(node_.get());
type = prop->getStaticType();
- nillable = prop->isNillable();
+ isNillable = prop->isNillable();
}
break;
case Node::KIND_LOCALIZED_PROPERTY:
@@ -241,13 +241,13 @@ void ChildAccess::setProperty(
LocalizedPropertyNode * locprop =
static_cast< LocalizedPropertyNode * >(getParentNode().get());
type = locprop->getStaticType();
- nillable = locprop->isNillable();
+ isNillable = locprop->isNillable();
}
break;
default:
break;
}
- checkValue(value, type, nillable);
+ checkValue(value, type, isNillable);
getParentAccess()->markChildAsModified(this);
changedValue_.reset(new css::uno::Any(value));
localModifications->add(getRelativePath());