No need for isKindOf to be SAL_CALL

Change-Id: Ia58af7d32904de01fdb5291203938c748cae94c6
This commit is contained in:
Stephan Bergmann
2014-03-12 13:07:30 +01:00
parent 3228e1f7df
commit a3066dd78c
8 changed files with 9 additions and 9 deletions

View File

@@ -70,7 +70,7 @@ void OStoreObject::operator delete (void *p)
/* /*
* isKindOf. * isKindOf.
*/ */
bool SAL_CALL OStoreObject::isKindOf (sal_uInt32 nTypeId) bool OStoreObject::isKindOf (sal_uInt32 nTypeId)
{ {
return (nTypeId == m_nTypeId); return (nTypeId == m_nTypeId);
} }

View File

@@ -39,7 +39,7 @@ class IStoreHandle : public rtl::IReference
public: public:
/** Replaces dynamic_cast type checking. /** Replaces dynamic_cast type checking.
*/ */
virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId) = 0; virtual bool isKindOf (sal_uInt32 nTypeId) = 0;
protected: protected:
~IStoreHandle() {} ~IStoreHandle() {}
@@ -75,7 +75,7 @@ public:
/** IStoreHandle. /** IStoreHandle.
*/ */
virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId); virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE;
/** IReference. /** IReference.
*/ */

View File

@@ -91,7 +91,7 @@ OStoreDirectory_Impl::~OStoreDirectory_Impl (void)
/* /*
* isKindOf. * isKindOf.
*/ */
bool SAL_CALL OStoreDirectory_Impl::isKindOf (sal_uInt32 nTypeId) bool OStoreDirectory_Impl::isKindOf (sal_uInt32 nTypeId)
{ {
return (nTypeId == m_nTypeId); return (nTypeId == m_nTypeId);
} }

View File

@@ -70,7 +70,7 @@ public:
/** IStoreHandle. /** IStoreHandle.
*/ */
virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId); virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE;
protected: protected:
/** Destruction. /** Destruction.

View File

@@ -65,7 +65,7 @@ OStoreLockBytes::~OStoreLockBytes (void)
/* /*
* isKindOf. * isKindOf.
*/ */
bool SAL_CALL OStoreLockBytes::isKindOf (sal_uInt32 nTypeId) bool OStoreLockBytes::isKindOf (sal_uInt32 nTypeId)
{ {
return (nTypeId == m_nTypeId); return (nTypeId == m_nTypeId);
} }

View File

@@ -105,7 +105,7 @@ public:
/** IStoreHandle. /** IStoreHandle.
*/ */
virtual bool SAL_CALL isKindOf (sal_uInt32 nMagic); virtual bool isKindOf (sal_uInt32 nMagic) SAL_OVERRIDE;
protected: protected:
/** Destruction (OReference). /** Destruction (OReference).

View File

@@ -60,7 +60,7 @@ OStorePageManager::~OStorePageManager (void)
/* /*
* isKindOf. * isKindOf.
*/ */
bool SAL_CALL OStorePageManager::isKindOf (sal_uInt32 nTypeId) bool OStorePageManager::isKindOf (sal_uInt32 nTypeId)
{ {
return (nTypeId == m_nTypeId); return (nTypeId == m_nTypeId);
} }

View File

@@ -130,7 +130,7 @@ public:
/** IStoreHandle. /** IStoreHandle.
*/ */
virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId); virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE;
protected: protected:
/** Destruction. /** Destruction.