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) ...@@ -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 ...@@ -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: ...@@ -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) ...@@ -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: ...@@ -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) ...@@ -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: ...@@ -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) ...@@ -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: ...@@ -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.
......
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