diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-05 08:16:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-05 08:17:52 +0200 |
commit | 0e507ae031768deceab236a41d1bbe9fb5123cea (patch) | |
tree | 34cc1626f1e8fa6d50d6edd88045be6252150f19 /xmloff/source/forms | |
parent | db246b491c1639942d9f952658d33974e9b06201 (diff) |
various: remove SAL_THROW macro
Change-Id: I9464179a736b91f5bc32eb5e5e89b3b4e3da3494
Diffstat (limited to 'xmloff/source/forms')
-rw-r--r-- | xmloff/source/forms/formcellbinding.cxx | 6 | ||||
-rw-r--r-- | xmloff/source/forms/formcellbinding.hxx | 6 | ||||
-rw-r--r-- | xmloff/source/forms/officeforms.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/forms/officeforms.hxx | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/xmloff/source/forms/formcellbinding.cxx b/xmloff/source/forms/formcellbinding.cxx index 0be43c8e00fb..c7ba0fd6e735 100644 --- a/xmloff/source/forms/formcellbinding.cxx +++ b/xmloff/source/forms/formcellbinding.cxx @@ -236,7 +236,7 @@ OUString FormCellBindingHelper::getStringAddressFromCellListSource( const Refere return sAddress; } -bool FormCellBindingHelper::isSpreadsheetDocumentWhichSupplies( const Reference< XSpreadsheetDocument >& _rxDocument, const OUString& _rService ) SAL_THROW(()) +bool FormCellBindingHelper::isSpreadsheetDocumentWhichSupplies( const Reference< XSpreadsheetDocument >& _rxDocument, const OUString& _rService ) { bool bYesItIs = false; @@ -271,7 +271,7 @@ bool FormCellBindingHelper::isSpreadsheetDocumentWhichSupplies( const Reference< return bYesItIs; } -bool FormCellBindingHelper::isSpreadsheetDocumentWhichSupplies( const OUString& _rService ) const SAL_THROW(()) +bool FormCellBindingHelper::isSpreadsheetDocumentWhichSupplies( const OUString& _rService ) const { return isSpreadsheetDocumentWhichSupplies( m_xDocument, _rService ); } @@ -412,7 +412,7 @@ Reference< XInterface > FormCellBindingHelper::createDocumentDependentInstance( } bool FormCellBindingHelper::doConvertAddressRepresentations( const OUString& _rInputProperty, const Any& _rInputValue, - const OUString& _rOutputProperty, Any& _rOutputValue, bool _bIsRange ) const SAL_THROW(()) + const OUString& _rOutputProperty, Any& _rOutputValue, bool _bIsRange ) const { bool bSuccess = false; diff --git a/xmloff/source/forms/formcellbinding.hxx b/xmloff/source/forms/formcellbinding.hxx index 3a90df83623b..969d5978b8c2 100644 --- a/xmloff/source/forms/formcellbinding.hxx +++ b/xmloff/source/forms/formcellbinding.hxx @@ -197,7 +197,7 @@ namespace xmloff /** determines if our document is a spreadsheet document, *and* can supply the given service */ - bool isSpreadsheetDocumentWhichSupplies( const OUString& _rService ) const SAL_THROW(()); + bool isSpreadsheetDocumentWhichSupplies( const OUString& _rService ) const; /** determines if our document is a spreadsheet document, *and* can supply the given service @@ -205,7 +205,7 @@ namespace xmloff static bool isSpreadsheetDocumentWhichSupplies( const ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XSpreadsheetDocument >& _rxDocument, const OUString& _rService - ) SAL_THROW(()); + ); /** checkes whether a given component supports a given servive */ @@ -257,7 +257,7 @@ namespace xmloff const OUString& _rOutputProperty, ::com::sun::star::uno::Any& _rOutputValue, bool _bIsRange - ) const SAL_THROW(()); + ) const; }; } // namespace xmloff diff --git a/xmloff/source/forms/officeforms.cxx b/xmloff/source/forms/officeforms.cxx index 4daae0e049d4..014d7921e03a 100644 --- a/xmloff/source/forms/officeforms.cxx +++ b/xmloff/source/forms/officeforms.cxx @@ -142,7 +142,7 @@ namespace xmloff aValue.makeStringAndClear()); } - void OFormsRootExport::addModelAttributes(SvXMLExport& _rExp) SAL_THROW(()) + void OFormsRootExport::addModelAttributes(SvXMLExport& _rExp) { try { diff --git a/xmloff/source/forms/officeforms.hxx b/xmloff/source/forms/officeforms.hxx index 90094b070bf6..1a4af65e4bda 100644 --- a/xmloff/source/forms/officeforms.hxx +++ b/xmloff/source/forms/officeforms.hxx @@ -69,7 +69,7 @@ namespace xmloff ~OFormsRootExport(); private: - void addModelAttributes(SvXMLExport& _rExp) SAL_THROW(()); + void addModelAttributes(SvXMLExport& _rExp); void implExportBool( SvXMLExport& _rExp, |