diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-18 14:49:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-07-23 09:55:40 +0200 |
commit | 110a25fdc2b0dc16c9b376fa6a9fdeb5fe7a58fb (patch) | |
tree | 9d103f76e3e914ad57fa8bfea2d3d5fccf751f70 /xmloff | |
parent | ba0e705b53c631f9fc47b5379c50fe2abb95feac (diff) |
loplugin:unusedfields
Change-Id: I1827262ad95942cacff589929f9436f8383cf142
Reviewed-on: https://gerrit.libreoffice.org/57642
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/impastpl.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/xmloff/source/style/impastpl.cxx b/xmloff/source/style/impastpl.cxx index 547a4834ea6e..67965fac188e 100644 --- a/xmloff/source/style/impastpl.cxx +++ b/xmloff/source/style/impastpl.cxx @@ -599,14 +599,12 @@ std::vector<xmloff::AutoStyleEntry> SvXMLAutoStylePoolP_Impl::GetAutoStyleEntrie for (std::unique_ptr<XMLAutoStyleFamily> const & rFamily : m_FamilySet) { rtl::Reference<XMLPropertySetMapper> aPropertyMapper = rFamily->mxMapper->getPropertySetMapper(); - sal_Int32 nFamily = rFamily->mnFamily; for (auto const & rParent : rFamily->m_ParentSet) { for (auto const & rProperty : rParent->GetPropertiesList()) { rReturnVector.emplace_back(); xmloff::AutoStyleEntry & rEntry = rReturnVector.back(); - rEntry.m_nFamily = nFamily; rEntry.m_aParentName = rParent->GetParent(); rEntry.m_aName = rProperty->GetName(); for (XMLPropertyState const & rPropertyState : rProperty->GetProperties()) diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index e221bd766bfb..1f06a8eec257 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -1250,8 +1250,6 @@ XMLTextParagraphExport::XMLTextParagraphExport( sTextFieldStart( "TextFieldStart" ), sTextFieldEnd( "TextFieldEnd" ), sTextFieldStartEnd( "TextFieldStartEnd" ), - m_sBookmarkHidden("BookmarkHidden"), - m_sBookmarkCondition("BookmarkCondition"), sFrameStyleName("FrameStyleName"), aCharStyleNamesPropInfoCache( sCharStyleNames ) { |