diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /store/source/lockbyte.cxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'store/source/lockbyte.cxx')
-rw-r--r-- | store/source/lockbyte.cxx | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/store/source/lockbyte.cxx b/store/source/lockbyte.cxx index 552199366781..2f6aefcba872 100644 --- a/store/source/lockbyte.cxx +++ b/store/source/lockbyte.cxx @@ -291,18 +291,18 @@ class FileLockBytes : /** ILockBytes implementation. */ - virtual storeError initialize_Impl (rtl::Reference< PageData::Allocator > & rxAllocator, sal_uInt16 nPageSize) SAL_OVERRIDE; + virtual storeError initialize_Impl (rtl::Reference< PageData::Allocator > & rxAllocator, sal_uInt16 nPageSize) override; - virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) SAL_OVERRIDE; - virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) SAL_OVERRIDE; + virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) override; + virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) override; - virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) SAL_OVERRIDE; - virtual storeError writeAt_Impl (sal_uInt32 nOffset, void const * pBuffer, sal_uInt32 nBytes) SAL_OVERRIDE; + virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) override; + virtual storeError writeAt_Impl (sal_uInt32 nOffset, void const * pBuffer, sal_uInt32 nBytes) override; - virtual storeError getSize_Impl (sal_uInt32 & rnSize) SAL_OVERRIDE; - virtual storeError setSize_Impl (sal_uInt32 nSize) SAL_OVERRIDE; + virtual storeError getSize_Impl (sal_uInt32 & rnSize) override; + virtual storeError setSize_Impl (sal_uInt32 nSize) override; - virtual storeError flush_Impl() SAL_OVERRIDE; + virtual storeError flush_Impl() override; public: /** Construction. @@ -511,23 +511,23 @@ class MappedLockBytes : /** PageData::Allocator implementation. */ - virtual void allocate_Impl (void ** ppPage, sal_uInt16 * pnSize) SAL_OVERRIDE; - virtual void deallocate_Impl (void * pPage) SAL_OVERRIDE; + virtual void allocate_Impl (void ** ppPage, sal_uInt16 * pnSize) override; + virtual void deallocate_Impl (void * pPage) override; /** ILockBytes implementation. */ - virtual storeError initialize_Impl (rtl::Reference< PageData::Allocator > & rxAllocator, sal_uInt16 nPageSize) SAL_OVERRIDE; + virtual storeError initialize_Impl (rtl::Reference< PageData::Allocator > & rxAllocator, sal_uInt16 nPageSize) override; - virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) SAL_OVERRIDE; - virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) SAL_OVERRIDE; + virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) override; + virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) override; - virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) SAL_OVERRIDE; - virtual storeError writeAt_Impl (sal_uInt32 nOffset, const void * pBuffer, sal_uInt32 nBytes) SAL_OVERRIDE; + virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) override; + virtual storeError writeAt_Impl (sal_uInt32 nOffset, const void * pBuffer, sal_uInt32 nBytes) override; - virtual storeError getSize_Impl (sal_uInt32 & rnSize) SAL_OVERRIDE; - virtual storeError setSize_Impl (sal_uInt32 nSize) SAL_OVERRIDE; + virtual storeError getSize_Impl (sal_uInt32 & rnSize) override; + virtual storeError setSize_Impl (sal_uInt32 nSize) override; - virtual storeError flush_Impl() SAL_OVERRIDE; + virtual storeError flush_Impl() override; public: /** Construction. @@ -649,18 +649,18 @@ class MemoryLockBytes : /** ILockBytes implementation. */ - virtual storeError initialize_Impl (rtl::Reference< PageData::Allocator > & rxAllocator, sal_uInt16 nPageSize) SAL_OVERRIDE; + virtual storeError initialize_Impl (rtl::Reference< PageData::Allocator > & rxAllocator, sal_uInt16 nPageSize) override; - virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) SAL_OVERRIDE; - virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) SAL_OVERRIDE; + virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) override; + virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) override; - virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) SAL_OVERRIDE; - virtual storeError writeAt_Impl (sal_uInt32 nOffset, const void * pBuffer, sal_uInt32 nBytes) SAL_OVERRIDE; + virtual storeError readAt_Impl (sal_uInt32 nOffset, void * pBuffer, sal_uInt32 nBytes) override; + virtual storeError writeAt_Impl (sal_uInt32 nOffset, const void * pBuffer, sal_uInt32 nBytes) override; - virtual storeError getSize_Impl (sal_uInt32 & rnSize) SAL_OVERRIDE; - virtual storeError setSize_Impl (sal_uInt32 nSize) SAL_OVERRIDE; + virtual storeError getSize_Impl (sal_uInt32 & rnSize) override; + virtual storeError setSize_Impl (sal_uInt32 nSize) override; - virtual storeError flush_Impl() SAL_OVERRIDE; + virtual storeError flush_Impl() override; public: /** Construction. |