diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:48:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:10 +0100 |
commit | 9439844a795e32c67bdb0b0d83f7d9c200866df4 (patch) | |
tree | 4e324d513c88a9e75bfe0d7e8e638a5b42d86125 /include/vbahelper/vbapagesetupbase.hxx | |
parent | 7c58ebaa025d6b8852608045af23239f7402a8be (diff) |
New loplugin:dynexcspec: Add @throws documentation, vbahelper
Change-Id: I44f1c8f7f2ffdbd050ea219c6b89b246fcbd2473
Diffstat (limited to 'include/vbahelper/vbapagesetupbase.hxx')
-rw-r--r-- | include/vbahelper/vbapagesetupbase.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vbahelper/vbapagesetupbase.hxx b/include/vbahelper/vbapagesetupbase.hxx index a012c730ad18..d052590929ce 100644 --- a/include/vbahelper/vbapagesetupbase.hxx +++ b/include/vbahelper/vbapagesetupbase.hxx @@ -49,6 +49,7 @@ protected: sal_Int32 mnOrientLandscape; sal_Int32 mnOrientPortrait; + /// @throws css::uno::RuntimeException VbaPageSetupBase( const css::uno::Reference< ov::XHelperInterface >& xParent, const css::uno::Reference< css::uno::XComponentContext >& xContext ) throw (css::uno::RuntimeException); public: @@ -63,9 +64,13 @@ public: virtual void SAL_CALL setRightMargin( double margin ) throw (css::uno::RuntimeException, std::exception) override; virtual double SAL_CALL getLeftMargin() throw (css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setLeftMargin( double margin ) throw (css::uno::RuntimeException, std::exception) override; + /// @throws css::uno::RuntimeException virtual double SAL_CALL getHeaderMargin() throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException virtual void SAL_CALL setHeaderMargin( double margin ) throw (css::uno::RuntimeException); + /// @throws css::uno::RuntimeException virtual double SAL_CALL getFooterMargin() throw (css::uno::RuntimeException); + /// @throws 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) override; virtual void SAL_CALL setOrientation( sal_Int32 orientation ) throw (css::uno::RuntimeException, std::exception) override; |