From 19240f625f8bd7b772481abc8e678d7b0fadd921 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 25 Feb 2019 10:24:55 +0200 Subject: 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 --- include/basic/sbx.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/basic') diff --git a/include/basic/sbx.hxx b/include/basic/sbx.hxx index 73f233e6b6b7..97014fc6fdef 100644 --- a/include/basic/sbx.hxx +++ b/include/basic/sbx.hxx @@ -112,9 +112,9 @@ class BASIC_DLLPUBLIC SbxArray : public SbxBase BASIC_DLLPRIVATE void PutDirect( SbxVariable* pVar, sal_uInt32 nIdx ); std::vector mVarEntries; // The variables + SbxDataType eType; // Data type of the array protected: - SbxDataType eType; // Data type of the array virtual ~SbxArray() override; virtual bool LoadData( SvStream&, sal_uInt16 ) override; virtual bool StoreData( SvStream& ) const override; -- cgit