diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-07 12:31:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-07 12:38:27 +0200 |
commit | 8f6c55a839d790c9268c1d0686f3eaf2f23484cb (patch) | |
tree | 1b10a5e10b66c3c8dcf0a8bf295167563e0f6828 /include/tools/stream.hxx | |
parent | e0f6559776b515a7d51331c7e848ac785e751c6a (diff) |
Replace SV_DECL/IMPL_REF macros with SvRef template
Change-Id: I0ef2e67f6d61e0ce118c0f5e926b8194ef9d8058
Diffstat (limited to 'include/tools/stream.hxx')
-rw-r--r-- | include/tools/stream.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx index bb0b392023b8..c823739670ae 100644 --- a/include/tools/stream.hxx +++ b/include/tools/stream.hxx @@ -134,7 +134,7 @@ public: virtual ErrCode Stat(SvLockBytesStat * pStat, SvLockBytesStatFlag) const; }; -SV_DECL_IMPL_REF(SvLockBytes); +typedef tools::SvRef<SvLockBytes> SvLockBytesRef; // SvOpenLockBytes @@ -157,7 +157,7 @@ public: virtual void Terminate() = 0; }; -SV_DECL_IMPL_REF(SvOpenLockBytes); +typedef tools::SvRef<SvOpenLockBytes> SvOpenLockBytesRef; // SvAsyncLockBytes @@ -187,7 +187,7 @@ public: virtual void Terminate() SAL_OVERRIDE { m_bTerminated = true; } }; -SV_DECL_IMPL_REF(SvAsyncLockBytes); +typedef tools::SvRef<SvAsyncLockBytes> SvAsyncLockBytesRef; // SvStream |