summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-08-26 13:26:56 +0200
committersb <sb@openoffice.org>2010-08-26 13:26:56 +0200
commitd7fd47ed54f42d353c375d171350cfe81c307414 (patch)
treeb3326514b66abc2684c4e0aad9ae78eabc0da4a1 /configmgr
parent0da24e667613be2f480b57fce3519295ed0eea26 (diff)
sb130: #i113096# previous change contained an error in configmgr::Components::removeExtensionXcuFile
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/components.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/configmgr/source/components.cxx b/configmgr/source/components.cxx
index 733ca05bc147..e76460de5b64 100644
--- a/configmgr/source/components.cxx
+++ b/configmgr/source/components.cxx
@@ -290,6 +290,7 @@ void Components::removeExtensionXcuFile(
// item->additions records all additions of set members in textual order,
// the latter check works well when iterating through item->additions in
// reverse order.
+ OSL_ASSERT(modifications != 0);
rtl::Reference< Data::ExtensionXcu > item(
data_.removeExtensionXcuAdditions(fileUri));
if (item.is()) {
@@ -315,6 +316,7 @@ void Components::removeExtensionXcuFile(
node->kind() == Node::KIND_SET);
if (hasOnlyEmptySets(node)) {
parent->getMembers().erase(i->back());
+ addModification(*i);
modifications->add(*i);
}
}