summaryrefslogtreecommitdiff
path: root/include/vbahelper/vbadocumentbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vbahelper/vbadocumentbase.hxx')
-rw-r--r--include/vbahelper/vbadocumentbase.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/vbahelper/vbadocumentbase.hxx b/include/vbahelper/vbadocumentbase.hxx
index 2a30cbcb4a6f..01d442a34686 100644
--- a/include/vbahelper/vbadocumentbase.hxx
+++ b/include/vbahelper/vbadocumentbase.hxx
@@ -39,21 +39,21 @@ public:
virtual ~VbaDocumentBase() {}
// Attributes
- virtual OUString SAL_CALL getName() throw (css::uno::RuntimeException);
- virtual OUString SAL_CALL getPath() throw (css::uno::RuntimeException);
- virtual OUString SAL_CALL getFullName() throw (css::uno::RuntimeException);
- virtual sal_Bool SAL_CALL getSaved() throw (css::uno::RuntimeException);
- virtual void SAL_CALL setSaved( sal_Bool bSave ) throw (css::uno::RuntimeException);
- virtual css::uno::Any SAL_CALL getVBProject() throw (css::uno::RuntimeException);
+ virtual OUString SAL_CALL getName() throw (css::uno::RuntimeException, std::exception);
+ virtual OUString SAL_CALL getPath() throw (css::uno::RuntimeException, std::exception);
+ virtual OUString SAL_CALL getFullName() throw (css::uno::RuntimeException, std::exception);
+ virtual sal_Bool SAL_CALL getSaved() throw (css::uno::RuntimeException, std::exception);
+ virtual void SAL_CALL setSaved( sal_Bool bSave ) throw (css::uno::RuntimeException, std::exception);
+ virtual css::uno::Any SAL_CALL getVBProject() throw (css::uno::RuntimeException, std::exception);
// Methods
virtual void SAL_CALL Close( const css::uno::Any &bSaveChanges,
const css::uno::Any &aFileName,
- const css::uno::Any &bRouteWorkbook ) throw (css::uno::RuntimeException);
+ const css::uno::Any &bRouteWorkbook ) throw (css::uno::RuntimeException, std::exception);
virtual void SAL_CALL Protect( const css::uno::Any &aPassword ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL Unprotect( const css::uno::Any &aPassword ) throw (css::uno::RuntimeException);
- virtual void SAL_CALL Save() throw (css::uno::RuntimeException);
- virtual void SAL_CALL Activate() throw (css::uno::RuntimeException);
+ virtual void SAL_CALL Unprotect( const css::uno::Any &aPassword ) throw (css::uno::RuntimeException, std::exception);
+ virtual void SAL_CALL Save() throw (css::uno::RuntimeException, std::exception);
+ virtual void SAL_CALL Activate() throw (css::uno::RuntimeException, std::exception);
// XHelperInterface
virtual OUString getServiceImplName();