summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorJustin Luth <justin.luth@collabora.com>2020-05-20 17:29:58 +0300
committerJustin Luth <justin_luth@sil.org>2020-05-22 02:15:46 +0200
commit9a7c5d38a7a43c75c0f3d2f0c725196e916d0260 (patch)
treef4cfa1c676633bceec31b11bd3613f7f7fc1652d /writerfilter
parentfb4e341ec16a81d5d7f487f801d6b93837bc4c9f (diff)
writerfilter: pStyle no longer defines PROP_NUMBERING_STYLE_NAME
This is legacy code. Previously, this could be added every time pStyle was defined. So a pStyle might have copied its numbering style-name to the paragraph before the numId was processed. But now the copying only runs at ::finishParagraph, so now nothing writes a PROP_NUMBERING_STYLE_NAME before numId is processed. Obsoleted by commit cc1c9c7484d97167021301f32c3397124c4d79f5 Introduced by commit e7ab4bb6b0e83f01148ffff41e8c5eaa0c5ba0a4 Change-Id: I6220106d16a531e61eadc8205f1d6b30db3af907 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94594 Tested-by: Jenkins Reviewed-by: Justin Luth <justin_luth@sil.org>
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapper.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper.cxx b/writerfilter/source/dmapper/DomainMapper.cxx
index 8eab461992b6..a09271548e97 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1327,8 +1327,6 @@ void DomainMapper::sprmWithProps( Sprm& rSprm, const PropertyMapPtr& rContext )
assert(dynamic_cast<ParagraphPropertyMap*>(pContext.get()));
static_cast<ParagraphPropertyMap*>(pContext.get())->SetListId(pList->GetId());
}
- // erase numbering from pStyle if already set
- rContext->Erase(PROP_NUMBERING_STYLE_NAME);
// Indentation can came from:
// 1) Paragraph style's numbering's indentation: the current non-style numId has priority over it.