summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-08 09:57:25 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-08-08 13:06:58 +0000
commit602647c2417e0e19e44f9c35a49fbb88ff8ac261 (patch)
treefb56a519ec12c3884a70862272c554c89d3b4b75 /include/tools
parent8f25e553b91f5ed3544c580a450658cc76ffed56 (diff)
loplugin:unnecessaryvirtual
Change-Id: If25d9307efda5f57b0f80a0cf5c2c5cab6a752d6 Reviewed-on: https://gerrit.libreoffice.org/27981 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/stream.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx
index 447543367f96..7d5726a7e986 100644
--- a/include/tools/stream.hxx
+++ b/include/tools/stream.hxx
@@ -121,7 +121,7 @@ public:
const SvStream * GetStream() const { return m_pStream; }
- virtual void SetSynchronMode(bool bTheSync = true) { m_bSync = bTheSync; }
+ void SetSynchronMode(bool bTheSync = true) { m_bSync = bTheSync; }
bool IsSynchronMode() const { return m_bSync; }
virtual ErrCode ReadAt(sal_uInt64 nPos, void * pBuffer, sal_Size nCount,