diff options
author | Noel <noelgrandin@gmail.com> | 2020-09-30 14:23:22 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-09-30 15:56:37 +0200 |
commit | 2be04eb4de522bc3aac0449721dd38afebf2ec63 (patch) | |
tree | e9204ea9945b26f24578b8c3a37eed7aaf4850c7 /sw | |
parent | 99e51aaf2ad216888622a46a625479e1b42946d4 (diff) |
loplugin:unusedmethods
Change-Id: I4f5262af08bb35540e6330775a91df42e4c9977e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103684
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/docxsdrexport.cxx | 5 | ||||
-rw-r--r-- | sw/source/filter/ww8/docxsdrexport.hxx | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/sw/source/filter/ww8/docxsdrexport.cxx b/sw/source/filter/ww8/docxsdrexport.cxx index 04fdb17b67da..d18c1daafd30 100644 --- a/sw/source/filter/ww8/docxsdrexport.cxx +++ b/sw/source/filter/ww8/docxsdrexport.cxx @@ -331,11 +331,6 @@ rtl::Reference<sax_fastparser::FastAttributeList>& DocxSdrExport::getFlyFillAttr return m_pImpl->getFlyFillAttrList(); } -sax_fastparser::FastAttributeList* DocxSdrExport::getFlyWrapAttrList() -{ - return m_pImpl->getFlyWrapAttrList(); -} - sax_fastparser::FastAttributeList* DocxSdrExport::getBodyPrAttrList() { return m_pImpl->getBodyPrAttrList(); diff --git a/sw/source/filter/ww8/docxsdrexport.hxx b/sw/source/filter/ww8/docxsdrexport.hxx index 69a9eb3adec0..c1fa05eeb44f 100644 --- a/sw/source/filter/ww8/docxsdrexport.hxx +++ b/sw/source/filter/ww8/docxsdrexport.hxx @@ -70,7 +70,6 @@ public: bool IsParagraphHasDrawing() const; void setParagraphHasDrawing(bool bParagraphHasDrawing); rtl::Reference<sax_fastparser::FastAttributeList>& getFlyFillAttrList(); - sax_fastparser::FastAttributeList* getFlyWrapAttrList(); void setFlyWrapAttrList(sax_fastparser::FastAttributeList* pAttrList); /// Attributes of <wps:bodyPr>, used during DML export of text frames. sax_fastparser::FastAttributeList* getBodyPrAttrList(); |