diff options
Diffstat (limited to 'sc/source/ui/vba/vbasheetobjects.hxx')
-rw-r--r-- | sc/source/ui/vba/vbasheetobjects.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/source/ui/vba/vbasheetobjects.hxx b/sc/source/ui/vba/vbasheetobjects.hxx index b0fc53521d7b..ca9872e4f9f4 100644 --- a/sc/source/ui/vba/vbasheetobjects.hxx +++ b/sc/source/ui/vba/vbasheetobjects.hxx @@ -43,24 +43,24 @@ class ScVbaSheetObjectsBase : public ScVbaSheetObjects_BASE { public: /// @throws css::uno::RuntimeException - explicit ScVbaSheetObjectsBase( const ScVbaObjectContainerRef& rxContainer ) throw (css::uno::RuntimeException); + explicit ScVbaSheetObjectsBase( const ScVbaObjectContainerRef& rxContainer ); virtual ~ScVbaSheetObjectsBase() override; /** Updates the collection by fetching all shapes from the draw page. @throws css::uno::RuntimeException */ - void collectShapes() throw (css::uno::RuntimeException); + void collectShapes(); // XEnumerationAccess - virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() throw (css::uno::RuntimeException) override; + virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override; // XElementAccess - virtual css::uno::Type SAL_CALL getElementType() throw (css::uno::RuntimeException) override; + virtual css::uno::Type SAL_CALL getElementType() override; // ScVbaCollectionBase virtual css::uno::Any createCollectionObject( const css::uno::Any& rSource ) override; - virtual css::uno::Any getItemByStringIndex( const OUString& rIndex ) throw (css::uno::RuntimeException) override; + virtual css::uno::Any getItemByStringIndex( const OUString& rIndex ) override; protected: ScVbaObjectContainerRef mxContainer; @@ -75,14 +75,14 @@ class ScVbaGraphicObjectsBase : public ScVbaGraphicObjects_BASE { public: /// @throws css::uno::RuntimeException - explicit ScVbaGraphicObjectsBase( const ScVbaObjectContainerRef& rxContainer ) throw (css::uno::RuntimeException); + explicit ScVbaGraphicObjectsBase( const ScVbaObjectContainerRef& rxContainer ); // XGraphicObjects virtual css::uno::Any SAL_CALL Add( const css::uno::Any& rLeft, const css::uno::Any& rTop, const css::uno::Any& rWidth, - const css::uno::Any& rHeight ) throw (css::uno::RuntimeException, std::exception) override; + const css::uno::Any& rHeight ) override; }; /** Collection containing all button controls from a sheet (not ActiveX controls). */ @@ -94,7 +94,7 @@ public: const css::uno::Reference< ov::XHelperInterface >& rxParent, const css::uno::Reference< css::uno::XComponentContext >& rxContext, const css::uno::Reference< css::frame::XModel >& rxModel, - const css::uno::Reference< css::sheet::XSpreadsheet >& rxSheet ) throw (css::uno::RuntimeException); + const css::uno::Reference< css::sheet::XSpreadsheet >& rxSheet ); VBAHELPER_DECL_XHELPERINTERFACE }; |