No need for isKindOf to be SAL_CALL
Change-Id: Ia58af7d32904de01fdb5291203938c748cae94c6
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
@@ -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.
|
||||||
*/
|
*/
|
||||||
|
@@ -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);
|
||||||
}
|
}
|
||||||
|
@@ -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.
|
||||||
|
@@ -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);
|
||||||
}
|
}
|
||||||
|
@@ -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).
|
||||||
|
@@ -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);
|
||||||
}
|
}
|
||||||
|
@@ -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.
|
||||||
|
Reference in New Issue
Block a user