summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-11-23 16:02:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-11-23 20:49:03 +0100
commit9c2e77152c3b824153ef5451ababe58dc5ce981c (patch)
tree7aaeaa6398fceea14ee508c9b3b5c082f2536920 /include/filter
parentbf059cd63fe01094b3eb469b2f4529820d692f32 (diff)
loplugin:unusedfields make some fields private
this is one of the secondary analyses this plugin performs Change-Id: Iaa4424c2396470c6f1df85b0290fbffdda35fa08 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143177 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/escherex.hxx6
-rw-r--r--include/filter/msfilter/svdfppt.hxx5
2 files changed, 7 insertions, 4 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx
index 462cee4f75af..ab8c30d7b2c4 100644
--- a/include/filter/msfilter/escherex.hxx
+++ b/include/filter/msfilter/escherex.hxx
@@ -478,18 +478,20 @@ struct MSFILTER_DLLPUBLIC EscherConnectorListEntry
struct MSFILTER_DLLPUBLIC EscherExContainer
{
+private:
sal_uInt32 nContPos;
SvStream& rStrm;
-
+public:
EscherExContainer( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0 );
~EscherExContainer();
};
struct MSFILTER_DLLPUBLIC EscherExAtom
{
+private:
sal_uInt32 nContPos;
SvStream& rStrm;
-
+public:
EscherExAtom( SvStream& rSt, const sal_uInt16 nRecType, const sal_uInt16 nInstance = 0, const sal_uInt8 nVersion = 0 );
~EscherExAtom();
};
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx
index 40ace3c33425..9c515615e0af 100644
--- a/include/filter/msfilter/svdfppt.hxx
+++ b/include/filter/msfilter/svdfppt.hxx
@@ -1000,8 +1000,9 @@ struct PPTRuler final : public salhelper::SimpleReferenceObject
struct PPTTextRulerInterpreter
{
+private:
rtl::Reference<PPTRuler> mxImplRuler;
-
+public:
PPTTextRulerInterpreter();
PPTTextRulerInterpreter( PPTTextRulerInterpreter const & rRuler );
PPTTextRulerInterpreter(
@@ -1156,10 +1157,10 @@ class MSFILTER_DLLPUBLIC PPTParagraphObj
PPTParagraphObj(PPTParagraphObj const&) = delete;
void operator=(PPTParagraphObj const&) = delete;
-public:
sal_uInt32 mnCurrentObject;
::std::vector<std::unique_ptr<PPTPortionObj>> m_PortionList;
+public:
void UpdateBulletRelSize( sal_uInt32& nBulletRelSize ) const;
bool GetAttrib( sal_uInt32 nAttr, sal_uInt32& nVal, TSS_Type nInstanceInSheet );