diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-21 13:22:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-21 13:23:02 +0200 |
commit | 7999da76a66eab687cfe152dc63cf93a2a8b0cd8 (patch) | |
tree | 2a08048dfa1e3807f1f166f75d10dd61818527e6 /include | |
parent | cd0e227a326f0571f157dde8678a253bcf172204 (diff) |
loplugin:expandablemethodds in include/filter
Change-Id: I92f0e19845e921701eb139e19493effa47908b39
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/msoleexp.hxx | 1 | ||||
-rw-r--r-- | include/filter/msfilter/mstoolbar.hxx | 3 | ||||
-rw-r--r-- | include/filter/msfilter/svdfppt.hxx | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/include/filter/msfilter/msoleexp.hxx b/include/filter/msfilter/msoleexp.hxx index 445e86d5f58c..6043bae832cd 100644 --- a/include/filter/msfilter/msoleexp.hxx +++ b/include/filter/msfilter/msoleexp.hxx @@ -45,7 +45,6 @@ class MSFILTER_DLLPUBLIC SvxMSExportOLEObjects sal_uInt32 nConvertFlags; public: SvxMSExportOLEObjects( sal_uInt32 nCnvrtFlgs ) : nConvertFlags(nCnvrtFlgs) {} - sal_uInt32 GetFlags() const { return nConvertFlags; } void ExportOLEObject( svt::EmbeddedObjectRef& rObj, SotStorage& rDestStg ); void ExportOLEObject( const css::uno::Reference < css::embed::XEmbeddedObject>& rObj, SotStorage& rDestStg ); diff --git a/include/filter/msfilter/mstoolbar.hxx b/include/filter/msfilter/mstoolbar.hxx index 3495a05b197e..0f35c5ce83b6 100644 --- a/include/filter/msfilter/mstoolbar.hxx +++ b/include/filter/msfilter/mstoolbar.hxx @@ -98,12 +98,11 @@ public: Indent( bool binit = false ) { if ( binit ) - init(); + TBBase::nIndent = 0; else TBBase::nIndent = TBBase::nIndent + 2; } ~Indent() { TBBase::nIndent = TBBase::nIndent - 2; } - static void init() { TBBase::nIndent = 0; } }; diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx index edab0cbdf297..22ab642f9e81 100644 --- a/include/filter/msfilter/svdfppt.hxx +++ b/include/filter/msfilter/svdfppt.hxx @@ -270,8 +270,7 @@ struct PptColorSchemeAtom sal_uInt8 aData[32]; public: - PptColorSchemeAtom () { Clear(); } - void Clear(); + PptColorSchemeAtom(); Color GetColor( sal_uInt16 nNum ) const; friend SvStream& ReadPptColorSchemeAtom(SvStream& rIn, PptColorSchemeAtom& rAtom); |