summaryrefslogtreecommitdiffstats
path: root/svx/source/inc
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/inc')
-rw-r--r--svx/source/inc/cell.hxx6
-rw-r--r--svx/source/inc/formcontroller.hxx4
-rw-r--r--svx/source/inc/xmlxtexp.hxx2
-rw-r--r--svx/source/inc/xmlxtimp.hxx4
4 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/inc/cell.hxx b/svx/source/inc/cell.hxx
index 94d0cf4a98cb..6e56dbe6f893 100644
--- a/svx/source/inc/cell.hxx
+++ b/svx/source/inc/cell.hxx
@@ -99,8 +99,8 @@ public:
// XInterface
SVX_DLLPRIVATE virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& Type ) override;
- SVX_DLLPRIVATE virtual void SAL_CALL acquire() throw () override;
- SVX_DLLPRIVATE virtual void SAL_CALL release() throw () override;
+ SVX_DLLPRIVATE virtual void SAL_CALL acquire() noexcept override;
+ SVX_DLLPRIVATE virtual void SAL_CALL release() noexcept override;
// XTypeProvider
SVX_DLLPRIVATE virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
@@ -190,7 +190,7 @@ protected:
private:
/// @throws css::uno::RuntimeException
SVX_DLLPRIVATE Cell( SdrTableObj& rTableObj );
- SVX_DLLPRIVATE virtual ~Cell() throw() override;
+ SVX_DLLPRIVATE virtual ~Cell() noexcept override;
Cell(Cell const &) = delete;
void operator =(Cell const &) = delete;
diff --git a/svx/source/inc/formcontroller.hxx b/svx/source/inc/formcontroller.hxx
index 230b0e0f50c7..d0936816a0ed 100644
--- a/svx/source/inc/formcontroller.hxx
+++ b/svx/source/inc/formcontroller.hxx
@@ -206,8 +206,8 @@ namespace svxform
// XInterface
virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& type) override;
- virtual void SAL_CALL acquire() throw () override;
- virtual void SAL_CALL release() throw () override;
+ virtual void SAL_CALL acquire() noexcept override;
+ virtual void SAL_CALL release() noexcept override;
// XTypeProvider
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override;
diff --git a/svx/source/inc/xmlxtexp.hxx b/svx/source/inc/xmlxtexp.hxx
index 62d35fb67753..6ed07675b4f6 100644
--- a/svx/source/inc/xmlxtexp.hxx
+++ b/svx/source/inc/xmlxtexp.hxx
@@ -54,7 +54,7 @@ public:
virtual void ExportContent_() override;
private:
- bool exportTable() throw();
+ bool exportTable() noexcept;
const css::uno::Reference< css::container::XNameContainer > & mxTable;
};
diff --git a/svx/source/inc/xmlxtimp.hxx b/svx/source/inc/xmlxtimp.hxx
index 99d5b4135d9a..a5bf4b39a1f0 100644
--- a/svx/source/inc/xmlxtimp.hxx
+++ b/svx/source/inc/xmlxtimp.hxx
@@ -37,12 +37,12 @@ public:
const css::uno::Reference< css::container::XNameContainer > & rTable,
css::uno::Reference<css::document::XGraphicStorageHandler> const & rxGraphicStorageHandler);
- virtual ~SvxXMLXTableImport() throw () override;
+ virtual ~SvxXMLXTableImport() noexcept override;
static bool load( const OUString &rPath, const OUString &rReferer,
const css::uno::Reference < css::embed::XStorage > &xStorage,
const css::uno::Reference< css::container::XNameContainer >& xTable,
- bool *bOptLoadedFromStorage ) throw();
+ bool *bOptLoadedFromStorage ) noexcept;
protected:
virtual SvXMLImportContext *CreateFastContext( sal_Int32 Element,
const ::css::uno::Reference< ::css::xml::sax::XFastAttributeList >& xAttrList ) override;