summaryrefslogtreecommitdiff
path: root/svx/source/form/legacyformcontroller.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/form/legacyformcontroller.cxx')
-rw-r--r--svx/source/form/legacyformcontroller.cxx30
1 files changed, 15 insertions, 15 deletions
diff --git a/svx/source/form/legacyformcontroller.cxx b/svx/source/form/legacyformcontroller.cxx
index b0bc33d23cfc..4bccbe837ba4 100644
--- a/svx/source/form/legacyformcontroller.cxx
+++ b/svx/source/form/legacyformcontroller.cxx
@@ -82,25 +82,25 @@ namespace svxform
}
// form::XFormController
- virtual Reference< XControl > SAL_CALL getCurrentControl( ) throw (RuntimeException, std::exception);
- virtual void SAL_CALL addActivateListener( const Reference< form::XFormControllerListener >& l ) throw (RuntimeException, std::exception);
- virtual void SAL_CALL removeActivateListener( const Reference< form::XFormControllerListener >& l ) throw (RuntimeException, std::exception);
+ virtual Reference< XControl > SAL_CALL getCurrentControl( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL addActivateListener( const Reference< form::XFormControllerListener >& l ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL removeActivateListener( const Reference< form::XFormControllerListener >& l ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
// awt::XTabController
- virtual void SAL_CALL setModel( const Reference< XTabControllerModel >& Model ) throw (RuntimeException, std::exception);
- virtual Reference< XTabControllerModel > SAL_CALL getModel( ) throw (RuntimeException, std::exception);
- virtual void SAL_CALL setContainer( const Reference< XControlContainer >& Container ) throw (RuntimeException, std::exception);
- virtual Reference< XControlContainer > SAL_CALL getContainer( ) throw (RuntimeException, std::exception);
- virtual Sequence< Reference< XControl > > SAL_CALL getControls( ) throw (RuntimeException, std::exception);
- virtual void SAL_CALL autoTabOrder( ) throw (RuntimeException, std::exception);
- virtual void SAL_CALL activateTabOrder( ) throw (RuntimeException, std::exception);
- virtual void SAL_CALL activateFirst( ) throw (RuntimeException, std::exception);
- virtual void SAL_CALL activateLast( ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL setModel( const Reference< XTabControllerModel >& Model ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Reference< XTabControllerModel > SAL_CALL getModel( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL setContainer( const Reference< XControlContainer >& Container ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Reference< XControlContainer > SAL_CALL getContainer( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Sequence< Reference< XControl > > SAL_CALL getControls( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL autoTabOrder( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL activateTabOrder( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL activateFirst( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL activateLast( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName( ) throw (RuntimeException, std::exception);
- virtual ::sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (RuntimeException, std::exception);
- virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (RuntimeException, std::exception);
+ virtual OUString SAL_CALL getImplementationName( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual ::sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (RuntimeException, std::exception) SAL_OVERRIDE;
private:
const Reference< form::runtime::XFormController > m_xDelegator;