summaryrefslogtreecommitdiff
path: root/include/vbahelper/vbapagesetupbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vbahelper/vbapagesetupbase.hxx')
-rw-r--r--include/vbahelper/vbapagesetupbase.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/vbahelper/vbapagesetupbase.hxx b/include/vbahelper/vbapagesetupbase.hxx
index 31b7a7fc7f9b..7ee5d2c610d5 100644
--- a/include/vbahelper/vbapagesetupbase.hxx
+++ b/include/vbahelper/vbapagesetupbase.hxx
@@ -41,20 +41,20 @@ public:
virtual ~VbaPageSetupBase(){}
// Attribute
- virtual double SAL_CALL getTopMargin() throw (css::uno::RuntimeException, std::exception);
- virtual void SAL_CALL setTopMargin( double margin ) throw (css::uno::RuntimeException, std::exception);
- virtual double SAL_CALL getBottomMargin() throw (css::uno::RuntimeException, std::exception);
- virtual void SAL_CALL setBottomMargin( double margin ) throw (css::uno::RuntimeException, std::exception);
- virtual double SAL_CALL getRightMargin() throw (css::uno::RuntimeException, std::exception);
- virtual void SAL_CALL setRightMargin( double margin ) throw (css::uno::RuntimeException, std::exception);
- virtual double SAL_CALL getLeftMargin() throw (css::uno::RuntimeException, std::exception);
- virtual void SAL_CALL setLeftMargin( double margin ) throw (css::uno::RuntimeException, std::exception);
+ virtual double SAL_CALL getTopMargin() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL setTopMargin( double margin ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual double SAL_CALL getBottomMargin() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL setBottomMargin( double margin ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual double SAL_CALL getRightMargin() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL setRightMargin( double margin ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual double SAL_CALL getLeftMargin() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL setLeftMargin( double margin ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual double SAL_CALL getHeaderMargin() throw (css::uno::RuntimeException);
virtual void SAL_CALL setHeaderMargin( double margin ) throw (css::uno::RuntimeException);
virtual double SAL_CALL getFooterMargin() throw (css::uno::RuntimeException);
virtual void SAL_CALL setFooterMargin( double margin ) throw (css::uno::RuntimeException);
- virtual sal_Int32 SAL_CALL getOrientation() throw (css::uno::RuntimeException, std::exception);
- virtual void SAL_CALL setOrientation( sal_Int32 orientation ) throw (css::uno::RuntimeException, std::exception);
+ virtual sal_Int32 SAL_CALL getOrientation() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL setOrientation( sal_Int32 orientation ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
#endif