summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-07 09:08:09 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-07 09:01:00 +0100
commit162f85283699692c5adf07e5b292979688bded93 (patch)
treeb0aaebec113e69770b861d39b06ff64af4b278b0 /writerfilter/source/ooxml
parent1129c848b360bd76174c941bb8fd98bfa5b9119c (diff)
loplugin:unusedmethods
Change-Id: I65354c7476dfaede1a607441d7c1b0c7ad038df4 Reviewed-on: https://gerrit.libreoffice.org/82186 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'writerfilter/source/ooxml')
-rw-r--r--writerfilter/source/ooxml/OOXMLFastContextHandler.cxx9
-rw-r--r--writerfilter/source/ooxml/OOXMLFastContextHandler.hxx1
2 files changed, 0 insertions, 10 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
index 39dcb8818734..11731557a44e 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
@@ -686,15 +686,6 @@ void OOXMLFastContextHandler::propagateCharacterProperties()
mpParserState->setCharacterProperties(getPropertySet());
}
-void OOXMLFastContextHandler::propagateCharacterPropertiesAsSet(Id nId)
-{
- OOXMLValue::Pointer_t pValue(new OOXMLPropertySetValue(getPropertySet()));
- OOXMLPropertySet::Pointer_t pPropertySet(new OOXMLPropertySet);
-
- pPropertySet->add(nId, pValue, OOXMLProperty::SPRM);
- mpParserState->setCharacterProperties(pPropertySet);
-}
-
void OOXMLFastContextHandler::propagateCellProperties()
{
mpParserState->setCellProperties(getPropertySet());
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
index 9e0d0509bc36..d5de5a778ee0 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.hxx
@@ -169,7 +169,6 @@ public:
void startTxbxContent();
void endTxbxContent();
void propagateCharacterProperties();
- void propagateCharacterPropertiesAsSet(Id nId);
void propagateTableProperties();
void propagateRowProperties();
void propagateCellProperties();