diff options
author | Noel Grandin <noel@peralex.com> | 2015-12-18 09:37:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-12-21 10:20:31 +0200 |
commit | e18b08363a939b35e7f5dc435e606d2c62bddebd (patch) | |
tree | 6318e03a67fd2dfbbd29b88b3de36ad7e9fd6292 /sd | |
parent | 20ff8cc5c3534d149b18b9776ab964324e70fdfd (diff) |
loplugin:unusedmethods
Change-Id: Ifafdaf6da0225f244853a0042a6458643b570623
Diffstat (limited to 'sd')
-rw-r--r-- | sd/inc/TransitionPreset.hxx | 1 | ||||
-rw-r--r-- | sd/inc/sdpage.hxx | 1 | ||||
-rw-r--r-- | sd/source/core/sdpage2.cxx | 5 |
3 files changed, 0 insertions, 7 deletions
diff --git a/sd/inc/TransitionPreset.hxx b/sd/inc/TransitionPreset.hxx index eb31d0c6f7a9..b51ad3993876 100644 --- a/sd/inc/TransitionPreset.hxx +++ b/sd/inc/TransitionPreset.hxx @@ -54,7 +54,6 @@ public: sal_Int32 getFadeColor() const { return mnFadeColor; } const OUString& getPresetId() const { return maPresetId; } - const OUString& getGroupId() const { return maGroupId; } const OUString& getSetId() const { return maSetId; } const OUString& getSetLabel() const { return maSetLabel; } const OUString& getVariantLabel() const { return maVariantLabel; } diff --git a/sd/inc/sdpage.hxx b/sd/inc/sdpage.hxx index a7d60976ad14..2427a5cd6f8b 100644 --- a/sd/inc/sdpage.hxx +++ b/sd/inc/sdpage.hxx @@ -371,7 +371,6 @@ public: void addAnnotation( const css::uno::Reference< css::office::XAnnotation >& xAnnotation, int nIndex = -1 ); void removeAnnotation( const css::uno::Reference< css::office::XAnnotation >& xAnnotation ); const sd::AnnotationVector& getAnnotations() const { return maAnnotations; } - sal_Int32 getHash() const; OString stringify() const; virtual void dumpAsXml(struct _xmlTextWriter* pWriter) const override; diff --git a/sd/source/core/sdpage2.cxx b/sd/source/core/sdpage2.cxx index b165f9533de0..f4c09ced768d 100644 --- a/sd/source/core/sdpage2.cxx +++ b/sd/source/core/sdpage2.cxx @@ -577,11 +577,6 @@ OString SdPage::stringify() const return aString.makeStringAndClear(); } -sal_Int32 SdPage::getHash() const -{ - return stringify().hashCode(); -} - void SdPage::createAnnotation( css::uno::Reference< css::office::XAnnotation >& xAnnotation ) { sd::createAnnotation( xAnnotation, this ); |