diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 17:50:02 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-19 18:03:12 +0100 |
commit | 9859ee7b1901449e63e4047554776f23c2de20ce (patch) | |
tree | 3facdb30c2c4bec900c666781859c4aefa7d45c1 /svx/source/inc/GraphCtlAccessibleContext.hxx | |
parent | 77894947ea5fcae00d8eeaee9482b53adfc6b7f2 (diff) |
New loplugin:dynexcspec: Add @throws documentation, svx
Change-Id: I0e827554a18622e19aec5f81c40da52664783f69
Diffstat (limited to 'svx/source/inc/GraphCtlAccessibleContext.hxx')
-rw-r--r-- | svx/source/inc/GraphCtlAccessibleContext.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/svx/source/inc/GraphCtlAccessibleContext.hxx b/svx/source/inc/GraphCtlAccessibleContext.hxx index c0f3454a930e..1eea3a88a03f 100644 --- a/svx/source/inc/GraphCtlAccessibleContext.hxx +++ b/svx/source/inc/GraphCtlAccessibleContext.hxx @@ -158,6 +158,7 @@ public: virtual Size LogicToPixel (const Size& rSize) const override; protected: + /// @throws css::lang::IndexOutOfBoundsException void checkChildIndexOnSelection( long nIndexOfChild ) throw (css::lang::IndexOutOfBoundsException ); public: @@ -181,11 +182,15 @@ protected: Rectangle GetBoundingBoxOnScreen() throw (css::uno::RuntimeException); /// Return the object's current bounding box relative to the parent object. + /// + /// @throws css::uno::RuntimeException Rectangle GetBoundingBox() throw (css::uno::RuntimeException); virtual void SAL_CALL disposing() final override; private: + /// @throws css::uno::RuntimeException + /// @throws css::lang::IndexOutOfBoundsException SdrObject* getSdrObject( sal_Int32 nIndex ) throw( css::uno::RuntimeException, css::lang::IndexOutOfBoundsException ); |