Kaydet (Commit) a3066dd7 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

No need for isKindOf to be SAL_CALL

Change-Id: Ia58af7d32904de01fdb5291203938c748cae94c6
üst 3228e1f7
......@@ -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);
}
......
......@@ -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.
*/
......
......@@ -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);
}
......
......@@ -70,7 +70,7 @@ public:
/** IStoreHandle.
*/
virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId);
virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE;
protected:
/** Destruction.
......
......@@ -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);
}
......
......@@ -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).
......
......@@ -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);
}
......
......@@ -130,7 +130,7 @@ public:
/** IStoreHandle.
*/
virtual bool SAL_CALL isKindOf (sal_uInt32 nTypeId);
virtual bool isKindOf (sal_uInt32 nTypeId) SAL_OVERRIDE;
protected:
/** Destruction.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment