summaryrefslogtreecommitdiff
path: root/include/svtools/toolpanel/refbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svtools/toolpanel/refbase.hxx')
-rw-r--r--include/svtools/toolpanel/refbase.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svtools/toolpanel/refbase.hxx b/include/svtools/toolpanel/refbase.hxx
index 7de482b37693..15fda1805fb1 100644
--- a/include/svtools/toolpanel/refbase.hxx
+++ b/include/svtools/toolpanel/refbase.hxx
@@ -44,16 +44,16 @@ namespace svt
{
}
- virtual oslInterlockedCount SAL_CALL acquire();
- virtual oslInterlockedCount SAL_CALL release();
+ virtual oslInterlockedCount SAL_CALL acquire() SAL_OVERRIDE;
+ virtual oslInterlockedCount SAL_CALL release() SAL_OVERRIDE;
private:
oslInterlockedCount m_refCount;
};
#define DECLARE_IREFERENCE() \
- virtual oslInterlockedCount SAL_CALL acquire(); \
- virtual oslInterlockedCount SAL_CALL release();
+ virtual oslInterlockedCount SAL_CALL acquire() SAL_OVERRIDE; \
+ virtual oslInterlockedCount SAL_CALL release() SAL_OVERRIDE;
#define IMPLEMENT_IREFERENCE( classname ) \