summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-04-12 13:06:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-04-12 16:03:49 +0200
commitd644a561eeb3e6ceb943819895a40c461effdbe6 (patch)
tree262db9932ab4df1068bb1086360dfdea4d06f9f1 /configmgr
parent725a1f514cd9fde0bb837457ed186fd6a7b4a239 (diff)
Allow <oor:items> in .xcd too
Can't remember a good reason not to. Change-Id: Ie2c62783465b917696d19e66159b5862512c7a54 Reviewed-on: https://gerrit.libreoffice.org/70655 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/xcdparser.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/xcdparser.cxx b/configmgr/source/xcdparser.cxx
index c5e8a9b017db..bc00b7b0b01d 100644
--- a/configmgr/source/xcdparser.cxx
+++ b/configmgr/source/xcdparser.cxx
@@ -127,7 +127,7 @@ bool XcdParser::startElement(
reader, nsId, name, existingDependencies);
}
if (nsId == ParseManager::NAMESPACE_OOR &&
- name.equals("component-data"))
+ (name.equals("component-data") || name.equals("items")))
{
nestedParser_ = new XcuParser(layer_ + 1, data_, nullptr, nullptr, nullptr);
nesting_ = 1;