diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-17 09:12:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-17 08:59:30 +0100 |
commit | 20ff62d319d9a8195a59d5b27ccc52d9000992c0 (patch) | |
tree | f32c6393778d7718e1cdda7f2281f8dfbf4dd591 /include | |
parent | 8eb2d2972583b909a249f5b0f22a9b1fbf533d24 (diff) |
loplugin:expandablemethods
Change-Id: Ifc269d9996928085a3ab78033788465b4f029368
Reviewed-on: https://gerrit.libreoffice.org/85255
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/basegfx/color/bcolormodifier.hxx | 17 | ||||
-rw-r--r-- | include/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx | 1 | ||||
-rw-r--r-- | include/filter/msfilter/msdffimp.hxx | 1 | ||||
-rw-r--r-- | include/unotools/confignode.hxx | 5 | ||||
-rw-r--r-- | include/vcl/menu.hxx | 1 | ||||
-rw-r--r-- | include/vcl/textview.hxx | 1 |
6 files changed, 0 insertions, 26 deletions
diff --git a/include/basegfx/color/bcolormodifier.hxx b/include/basegfx/color/bcolormodifier.hxx index 503581d31500..41c47bd54edc 100644 --- a/include/basegfx/color/bcolormodifier.hxx +++ b/include/basegfx/color/bcolormodifier.hxx @@ -200,10 +200,6 @@ namespace basegfx virtual ~BColorModifier_interpolate() override; - // data access - const ::basegfx::BColor& getBColor() const { return maBColor; } - double getValue() const { return mfValue; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; @@ -230,9 +226,6 @@ namespace basegfx virtual ~BColorModifier_black_and_white() override; - // data access - double getValue() const { return mfValue; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; @@ -260,9 +253,6 @@ namespace basegfx virtual ~BColorModifier_gamma() override; - // data access - double getValue() const { return mfValue; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; @@ -299,13 +289,6 @@ namespace basegfx virtual ~BColorModifier_RGBLuminanceContrast() override; - // data access - double getRed() const { return mfRed; } - double getGreen() const { return mfGreen; } - double getBlue() const { return mfBlue; } - double getLuminance() const { return mfLuminance; } - double getContrast() const { return mfContrast; } - // compare operator virtual bool operator==(const BColorModifier& rCompare) const override; diff --git a/include/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx b/include/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx index 086c28e93078..98322308e6db 100644 --- a/include/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx +++ b/include/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx @@ -175,7 +175,6 @@ namespace drawinglayer /// data read access FieldType getType() const { return meType; } - const std::vector< std::pair< OUString, OUString>>& getNameValue() const { return meNameValue; } OUString getValue(const OUString& rName) const; /// compare operator diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx index efb71e6737ee..593a79b145f6 100644 --- a/include/filter/msfilter/msdffimp.hxx +++ b/include/filter/msfilter/msdffimp.hxx @@ -289,7 +289,6 @@ public: virtual ~SvxMSDffImportData() override; bool empty() const { return m_Records.empty(); } void insert(std::unique_ptr<SvxMSDffImportRec> pImpRec); - void unmap(const SdrObject* pObj) { m_ObjToRecMap.erase(pObj); } size_t size() const { return m_Records.size(); } SvxMSDffImportRec* find(const SdrObject* pObj); MSDffImportRecords::const_iterator begin() const { return m_Records.begin(); } diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx index 368d020910b7..156c5a05381b 100644 --- a/include/unotools/confignode.hxx +++ b/include/unotools/confignode.hxx @@ -134,11 +134,6 @@ namespace utl css::uno::Sequence< OUString > getNodeNames() const throw(); - /** get the flag specifying the current escape behaviour - @see setEscape - */ - bool getEscape() const { return m_bEscapeNames; } - /// invalidate the object virtual void clear() throw(); diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx index 76a39c813eef..1e8542c0206c 100644 --- a/include/vcl/menu.hxx +++ b/include/vcl/menu.hxx @@ -183,7 +183,6 @@ protected: SAL_DLLPRIVATE void ImplFillLayoutData() const; SAL_DLLPRIVATE SalMenu* ImplGetSalMenu() { return mpSalMenu.get(); } - SAL_DLLPRIVATE void ImplClearSalMenu(); SAL_DLLPRIVATE OUString ImplGetHelpText( sal_uInt16 nItemId ) const; // returns native check and option menu symbol height in rCheckHeight and rRadioHeight diff --git a/include/vcl/textview.hxx b/include/vcl/textview.hxx index 3de25b5acb0d..d49d1e960141 100644 --- a/include/vcl/textview.hxx +++ b/include/vcl/textview.hxx @@ -59,7 +59,6 @@ private: public: explicit TETextDataObject( const OUString& rText ); - OUString& GetText() { return maText; } SvMemoryStream& GetHTMLStream() { return maHTMLStream; } // css::uno::XInterface |