diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-25 10:24:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-27 07:34:52 +0100 |
commit | 19240f625f8bd7b772481abc8e678d7b0fadd921 (patch) | |
tree | df98eb1d1d2bf11179aea13de58aa38548458b9d /include/oox | |
parent | 60c7725a20ff0d77e3025ed60608f57d46e50b58 (diff) |
loplugin:unusedfields look for classes where we can make all the..
fields private
Change-Id: Id3c6b123f06ab5dcf87628de4c347626110d2d27
Reviewed-on: https://gerrit.libreoffice.org/68302
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/dump/dumperbase.hxx | 1 | ||||
-rw-r--r-- | include/oox/vml/vmlshapecontext.hxx | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/include/oox/dump/dumperbase.hxx b/include/oox/dump/dumperbase.hxx index 7367bfd6cec7..5445be3761cf 100644 --- a/include/oox/dump/dumperbase.hxx +++ b/include/oox/dump/dumperbase.hxx @@ -1602,7 +1602,6 @@ protected: private: void constructTextStrmObj( rtl_TextEncoding eTextEnc ); -protected: std::shared_ptr< TextInputStream > mxTextStrm; }; diff --git a/include/oox/vml/vmlshapecontext.hxx b/include/oox/vml/vmlshapecontext.hxx index 84694e655865..7251c1656f68 100644 --- a/include/oox/vml/vmlshapecontext.hxx +++ b/include/oox/vml/vmlshapecontext.hxx @@ -141,10 +141,8 @@ private: /** Processes the 'path' attribute. */ void setVmlPath( const OUString& rPath ); -protected: - ShapeBase& mrShape; - private: + ShapeBase& mrShape; ShapeModel& mrShapeModel; }; |