diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-03 11:07:20 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-03 11:37:31 +0000 |
commit | b01c5ae95683aa4c059048eac3b3eb55cc256be4 (patch) | |
tree | 9ac9366e463d3d1c7281f0f8fbdaef539c51b5bd /cppcanvas | |
parent | b3a229ad0d35b2364cc485a0dd1a5b5510fb40c3 (diff) |
loplugin:unusedmethods unused return types
Change-Id: I88204bca60dd1e299b040c52bc87e500cbfaa930
Reviewed-on: https://gerrit.libreoffice.org/30519
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cppcanvas')
-rw-r--r-- | cppcanvas/source/wrapper/implsprite.cxx | 5 | ||||
-rw-r--r-- | cppcanvas/source/wrapper/implsprite.hxx | 3 |
2 files changed, 0 insertions, 8 deletions
diff --git a/cppcanvas/source/wrapper/implsprite.cxx b/cppcanvas/source/wrapper/implsprite.cxx index 889b06125b8d..e2921786ac30 100644 --- a/cppcanvas/source/wrapper/implsprite.cxx +++ b/cppcanvas/source/wrapper/implsprite.cxx @@ -190,11 +190,6 @@ namespace cppcanvas if( mxSprite.is() ) mxSprite->setPriority(fPriority); } - - uno::Reference< rendering::XSprite > ImplSprite::getUNOSprite() const - { - return mxSprite; - } } } diff --git a/cppcanvas/source/wrapper/implsprite.hxx b/cppcanvas/source/wrapper/implsprite.hxx index 82011e71f220..d9aa0699c4d1 100644 --- a/cppcanvas/source/wrapper/implsprite.hxx +++ b/cppcanvas/source/wrapper/implsprite.hxx @@ -53,9 +53,6 @@ namespace cppcanvas virtual void setPriority( double fPriority ) override; - virtual css::uno::Reference< - css::rendering::XSprite > getUNOSprite() const override; - private: ImplSprite(const ImplSprite&) = delete; ImplSprite& operator=( const ImplSprite& ) = delete; |