diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-01 13:55:55 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-02 06:37:53 +0000 |
commit | d3d4b8691968810bb57bbd94dde39bb7be4be4da (patch) | |
tree | 0a2720842b799b0803d879a4ae3d021ff7777f4a /svl | |
parent | a28231b72b5a87dddffad82a34deac4e5bb76ed1 (diff) |
loplugin:unusedmethods tools
Change-Id: I45f5489233879126d4f9ee3d01db504d950bb597
Reviewed-on: https://gerrit.libreoffice.org/16656
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/inc/strmadpt.hxx | 4 | ||||
-rw-r--r-- | svl/source/misc/strmadpt.cxx | 12 |
2 files changed, 0 insertions, 16 deletions
diff --git a/svl/source/inc/strmadpt.hxx b/svl/source/inc/strmadpt.hxx index c5e99087d993..dfb61f88e4c2 100644 --- a/svl/source/inc/strmadpt.hxx +++ b/svl/source/inc/strmadpt.hxx @@ -55,10 +55,6 @@ public: virtual ErrCode FillAppend(const void * pBuffer, sal_uLong nCount, sal_uLong * pWritten) SAL_OVERRIDE; - virtual sal_uInt64 Tell() const SAL_OVERRIDE; - - virtual sal_uInt64 Seek(sal_uInt64) SAL_OVERRIDE; - virtual void Terminate() SAL_OVERRIDE; }; diff --git a/svl/source/misc/strmadpt.cxx b/svl/source/misc/strmadpt.cxx index df8b901706ee..c24291ecc501 100644 --- a/svl/source/misc/strmadpt.cxx +++ b/svl/source/misc/strmadpt.cxx @@ -209,18 +209,6 @@ ErrCode SvOutputStreamOpenLockBytes::FillAppend(void const * pBuffer, } // virtual -sal_uInt64 SvOutputStreamOpenLockBytes::Tell() const -{ - return m_nPosition; -} - -// virtual -sal_uInt64 SvOutputStreamOpenLockBytes::Seek(sal_uInt64) -{ - return m_nPosition; -} - -// virtual void SvOutputStreamOpenLockBytes::Terminate() { if (m_xOutputStream.is()) |