summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-27 10:22:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-28 10:00:01 +0100
commitae25d5d3a333f58723eb9449cd3694cc0b80b3a6 (patch)
treeea2e7aa8375bb5142c7a67bbf4def4cc06269037 /writerfilter/source/ooxml
parent6db4b97ee12805ce993bd7663a0613b4b4f25587 (diff)
loplugin:unusedfields
Change-Id: Iffbb4e7107a0b1ae35c879c193a9ec209addf453 Reviewed-on: https://gerrit.libreoffice.org/64144 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'writerfilter/source/ooxml')
-rw-r--r--writerfilter/source/ooxml/Handler.cxx3
-rw-r--r--writerfilter/source/ooxml/Handler.hxx2
2 files changed, 2 insertions, 3 deletions
diff --git a/writerfilter/source/ooxml/Handler.cxx b/writerfilter/source/ooxml/Handler.cxx
index 290a4b749758..f7003b44e6f0 100644
--- a/writerfilter/source/ooxml/Handler.cxx
+++ b/writerfilter/source/ooxml/Handler.cxx
@@ -238,7 +238,7 @@ void OOXMLHeaderHandler::sprm(Sprm & /*sprm*/)
class OOXMLBreakHandler
*/
OOXMLBreakHandler::OOXMLBreakHandler(Stream &rStream)
-: mnType(0), mnClear(0),
+: mnType(0),
mrStream(rStream)
{
}
@@ -270,7 +270,6 @@ void OOXMLBreakHandler::attribute(Id name, Value & val)
mnType = val.getInt();
break;
case NS_ooxml::LN_CT_Br_clear:
- mnClear = val.getInt();
break;
default:
break;
diff --git a/writerfilter/source/ooxml/Handler.hxx b/writerfilter/source/ooxml/Handler.hxx
index 5de41e351981..47ae7d562a53 100644
--- a/writerfilter/source/ooxml/Handler.hxx
+++ b/writerfilter/source/ooxml/Handler.hxx
@@ -108,7 +108,7 @@ public:
class OOXMLBreakHandler : public Properties
{
- sal_Int32 mnType, mnClear;
+ sal_Int32 mnType;
Stream & mrStream;
public:
explicit OOXMLBreakHandler(Stream & rStream);