diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-01 09:23:08 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-01 09:23:08 +0200 |
commit | ac1e33b069e0fb9136ac1e0807610adb4b2990ee (patch) | |
tree | 74bd752aa7b0b79769e5b873077e78d48d84585a /svl | |
parent | 43f55e39668858e110bf7f3735486bdf14025b4e (diff) |
Remove unused inline function
Change-Id: Ib1e05194fd51b914da45cbdfb75e142be5d852fe
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/misc/strmadpt.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/svl/source/misc/strmadpt.cxx b/svl/source/misc/strmadpt.cxx index 8023efb476c4..83ea62806f56 100644 --- a/svl/source/misc/strmadpt.cxx +++ b/svl/source/misc/strmadpt.cxx @@ -87,8 +87,6 @@ public: bool addMark(sal_uInt32 nPosition); bool removeMark(sal_uInt32 nPosition); - inline sal_uInt32 getReadPosition() const; - SeekResult setReadPosition(sal_uInt32 nPosition); }; @@ -123,15 +121,6 @@ inline bool SvDataPipe_Impl::isEOF() const && (!m_pReadPage || m_pReadPage->m_pRead == m_pReadPage->m_pEnd); } -inline sal_uInt32 SvDataPipe_Impl::getReadPosition() const -{ - return m_pReadPage == 0 ? 0 : - m_pReadPage->m_nOffset - + (m_pReadPage->m_pRead - - m_pReadPage->m_aBuffer); -} - - // SvOutputStreamOpenLockBytes |