summaryrefslogtreecommitdiff
path: root/configmgr2/source/xcuparser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr2/source/xcuparser.cxx')
-rw-r--r--configmgr2/source/xcuparser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/configmgr2/source/xcuparser.cxx b/configmgr2/source/xcuparser.cxx
index ca50bd7a01c1..2821d51eeb7a 100644
--- a/configmgr2/source/xcuparser.cxx
+++ b/configmgr2/source/xcuparser.cxx
@@ -525,7 +525,7 @@ void XcuParser::handleGroupProp(XmlReader & reader, GroupNode * group) {
}
rtl::OUString name(xmldata::convertFromUtf8(attrName));
if (state_.top().record) {
- data_->addModification(pathPrefix_ + name);
+ data_->modifications.add(pathPrefix_ + name);
}
Type type = xmldata::parseType(reader, attrType);
if (type == TYPE_ANY) {
@@ -842,7 +842,7 @@ void XcuParser::handleSetNode(XmlReader & reader, SetNode * set) {
attrComponent, attrNodeType, componentName_,
&set->getDefaultTemplateName()));
if (state_.top().record) {
- data_->addModification(
+ data_->modifications.add(
pathPrefix_ + Data::createSegment(templateName, name));
}
if (!set->isValidTemplate(templateName)) {