From a3066dd78ce83c0302f70b250cc6eeb0c7eaf30c Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 12 Mar 2014 13:07:30 +0100 Subject: No need for isKindOf to be SAL_CALL Change-Id: Ia58af7d32904de01fdb5291203938c748cae94c6 --- store/source/object.cxx | 2 +- store/source/object.hxx | 4 ++-- store/source/stordir.cxx | 2 +- store/source/stordir.hxx | 2 +- store/source/storlckb.cxx | 2 +- store/source/storlckb.hxx | 2 +- store/source/storpage.cxx | 2 +- store/source/storpage.hxx | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) (limited to 'store') diff --git a/store/source/object.cxx b/store/source/object.cxx index eb56b3da3604..1cac71d7e519 100644 --- a/store/source/object.cxx +++ b/store/source/object.cxx @@ -70,7 +70,7 @@ void OStoreObject::operator delete (void *p) /* * isKindOf. */ -bool SAL_CALL OStoreObject::isKindOf (sal_uInt32 nTypeId) +bool OStoreObject::isKindOf (sal_uInt32 nTypeId) { return (nTypeId == m_nTypeId); } diff --git a/store/source/object.hxx b/store/source/object.hxx index 04a47428ad61..a6835bd76fc1 100644 --- a/store/source/object.hxx +++ b/store/source/object.hxx @@ -39,7 +39,7 @@ class IStoreHandle : public rtl::IReference public: /** Replaces dynamic_cast type checking. */ - virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId) = 0; + virtual bool isKindOf (sal_uInt32 nTypeId) = 0; protected: ~IStoreHandle() {} @@ -75,7 +75,7 @@ public: /** IStoreHandle. */ - virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId); + virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE; /** IReference. */ diff --git a/store/source/stordir.cxx b/store/source/stordir.cxx index 96bc1cadccaf..c319b9a2de44 100644 --- a/store/source/stordir.cxx +++ b/store/source/stordir.cxx @@ -91,7 +91,7 @@ OStoreDirectory_Impl::~OStoreDirectory_Impl (void) /* * isKindOf. */ -bool SAL_CALL OStoreDirectory_Impl::isKindOf (sal_uInt32 nTypeId) +bool OStoreDirectory_Impl::isKindOf (sal_uInt32 nTypeId) { return (nTypeId == m_nTypeId); } diff --git a/store/source/stordir.hxx b/store/source/stordir.hxx index 0a4a036a9aa3..97c3afadf352 100644 --- a/store/source/stordir.hxx +++ b/store/source/stordir.hxx @@ -70,7 +70,7 @@ public: /** IStoreHandle. */ - virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId); + virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE; protected: /** Destruction. diff --git a/store/source/storlckb.cxx b/store/source/storlckb.cxx index 29cfd8419f4a..986e049619c9 100644 --- a/store/source/storlckb.cxx +++ b/store/source/storlckb.cxx @@ -65,7 +65,7 @@ OStoreLockBytes::~OStoreLockBytes (void) /* * isKindOf. */ -bool SAL_CALL OStoreLockBytes::isKindOf (sal_uInt32 nTypeId) +bool OStoreLockBytes::isKindOf (sal_uInt32 nTypeId) { return (nTypeId == m_nTypeId); } diff --git a/store/source/storlckb.hxx b/store/source/storlckb.hxx index d5b1e407f03e..416176fccc5c 100644 --- a/store/source/storlckb.hxx +++ b/store/source/storlckb.hxx @@ -105,7 +105,7 @@ public: /** IStoreHandle. */ - virtual bool SAL_CALL isKindOf (sal_uInt32 nMagic); + virtual bool isKindOf (sal_uInt32 nMagic) SAL_OVERRIDE; protected: /** Destruction (OReference). diff --git a/store/source/storpage.cxx b/store/source/storpage.cxx index fa5abdedd03b..2d222fd9dba7 100644 --- a/store/source/storpage.cxx +++ b/store/source/storpage.cxx @@ -60,7 +60,7 @@ OStorePageManager::~OStorePageManager (void) /* * isKindOf. */ -bool SAL_CALL OStorePageManager::isKindOf (sal_uInt32 nTypeId) +bool OStorePageManager::isKindOf (sal_uInt32 nTypeId) { return (nTypeId == m_nTypeId); } diff --git a/store/source/storpage.hxx b/store/source/storpage.hxx index 384a1b974734..6dc579e4b9b0 100644 --- a/store/source/storpage.hxx +++ b/store/source/storpage.hxx @@ -130,7 +130,7 @@ public: /** IStoreHandle. */ - virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId); + virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE; protected: /** Destruction. -- cgit v1.2.3