diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-12 21:18:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 11:42:40 +0100 |
commit | e5300954de54a1c9d271b1a63f6e7ba12377f448 (patch) | |
tree | cc714cd75c2d8328900c4474957f9faa0058ab68 | |
parent | 906a7600d89a00f60a4fba0bd4fccf5dc4abe89a (diff) |
AddMark/RemoveMark unused
-rw-r--r-- | binfilter/bf_svtools/source/misc1/svt_strmadpt.cxx | 16 | ||||
-rw-r--r-- | binfilter/inc/bf_svtools/instrm.hxx | 4 |
2 files changed, 0 insertions, 20 deletions
diff --git a/binfilter/bf_svtools/source/misc1/svt_strmadpt.cxx b/binfilter/bf_svtools/source/misc1/svt_strmadpt.cxx index 38591b435..03de8627d 100644 --- a/binfilter/bf_svtools/source/misc1/svt_strmadpt.cxx +++ b/binfilter/bf_svtools/source/misc1/svt_strmadpt.cxx @@ -669,22 +669,6 @@ USHORT SvInputStream::IsA() const } //============================================================================ -// virtual -void SvInputStream::AddMark(ULONG nPos) -{ - if (open() && m_pPipe) - m_pPipe->addMark(nPos); -} - -//============================================================================ -// virtual -void SvInputStream::RemoveMark(ULONG nPos) -{ - if (open() && m_pPipe) - m_pPipe->removeMark(nPos); -} - -//============================================================================ // // SvDataPipe_Impl // diff --git a/binfilter/inc/bf_svtools/instrm.hxx b/binfilter/inc/bf_svtools/instrm.hxx index c4cd00fcd..6b2cde305 100644 --- a/binfilter/inc/bf_svtools/instrm.hxx +++ b/binfilter/inc/bf_svtools/instrm.hxx @@ -75,10 +75,6 @@ public: virtual ~SvInputStream(); virtual USHORT IsA() const; - - virtual void AddMark(ULONG nPos); - - virtual void RemoveMark(ULONG nPos); }; } |