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 /sot | |
parent | e0f6559776b515a7d51331c7e848ac785e751c6a (diff) |
Replace SV_DECL/IMPL_REF macros with SvRef template
Change-Id: I0ef2e67f6d61e0ce118c0f5e926b8194ef9d8058
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/ucbstorage.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index c955492748e7..ecdf6fb2fdc7 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -459,7 +459,7 @@ public: void PrepareCachedForReopen( StreamMode nMode ); }; -SV_DECL_IMPL_REF( UCBStorageStream_Impl ); +typedef tools::SvRef<UCBStorageStream_Impl> UCBStorageStream_ImplRef; struct UCBStorageElement_Impl; typedef ::std::vector< UCBStorageElement_Impl* > UCBStorageElementList_Impl; @@ -536,7 +536,7 @@ public: void SetError( long nError ); }; -SV_DECL_IMPL_REF( UCBStorage_Impl ); +typedef tools::SvRef<UCBStorage_Impl> UCBStorage_ImplRef; // this struct contains all necessary information on an element inside a UCBStorage struct UCBStorageElement_Impl |