summaryrefslogtreecommitdiff
path: root/toolkit/source/helper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-26 16:37:00 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-26 16:39:26 +0100
commit70cc2b191b95fbc210bc1f0f6a7159f341894f0f (patch)
treea70f4957c454b443520cbf91250c41d9eea80017 /toolkit/source/helper
parent8757bea2e88c6e349e1fe98d8e9695d7b9c6179e (diff)
First batch of adding SAL_OVERRRIDE to overriding function declarations
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
Diffstat (limited to 'toolkit/source/helper')
-rw-r--r--toolkit/source/helper/accessibilityclient.cxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/toolkit/source/helper/accessibilityclient.cxx b/toolkit/source/helper/accessibilityclient.cxx
index 80fa8fb0f2eb..0c4bd00d2f71 100644
--- a/toolkit/source/helper/accessibilityclient.cxx
+++ b/toolkit/source/helper/accessibilityclient.cxx
@@ -77,67 +77,67 @@ namespace toolkit
public:
// 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;
// IAccessibleFactory
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXButton* /*_pXWindow*/ )
+ createAccessibleContext( VCLXButton* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXCheckBox* /*_pXWindow*/ )
+ createAccessibleContext( VCLXCheckBox* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXRadioButton* /*_pXWindow*/ )
+ createAccessibleContext( VCLXRadioButton* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXListBox* /*_pXWindow*/ )
+ createAccessibleContext( VCLXListBox* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXFixedHyperlink* /*_pXWindow*/ )
+ createAccessibleContext( VCLXFixedHyperlink* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXFixedText* /*_pXWindow*/ )
+ createAccessibleContext( VCLXFixedText* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXScrollBar* /*_pXWindow*/ )
+ createAccessibleContext( VCLXScrollBar* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXEdit* /*_pXWindow*/ )
+ createAccessibleContext( VCLXEdit* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXComboBox* /*_pXWindow*/ )
+ createAccessibleContext( VCLXComboBox* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXToolBox* /*_pXWindow*/ )
+ createAccessibleContext( VCLXToolBox* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext >
- createAccessibleContext( VCLXWindow* /*_pXWindow*/ )
+ createAccessibleContext( VCLXWindow* /*_pXWindow*/ ) SAL_OVERRIDE
{
return NULL;
}
::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >
- createAccessible( Menu* /*_pMenu*/, sal_Bool /*_bIsMenuBar*/ )
+ createAccessible( Menu* /*_pMenu*/, sal_Bool /*_bIsMenuBar*/ ) SAL_OVERRIDE
{
return NULL;
}