summaryrefslogtreecommitdiff
path: root/store/source/object.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-12 13:07:30 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-12 16:24:42 +0100
commita3066dd78ce83c0302f70b250cc6eeb0c7eaf30c (patch)
tree08f60898c2c43e312402daa9c62618e10edfcffc /store/source/object.hxx
parent3228e1f7dfe5956461ab05e529012d4bd6137ca5 (diff)
No need for isKindOf to be SAL_CALL
Change-Id: Ia58af7d32904de01fdb5291203938c748cae94c6
Diffstat (limited to 'store/source/object.hxx')
-rw-r--r--store/source/object.hxx4
1 files changed, 2 insertions, 2 deletions
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.
*/