diff options
-rw-r--r-- | svl/source/inc/passwordcontainer.hxx | 2 | ||||
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/svl/source/inc/passwordcontainer.hxx b/svl/source/inc/passwordcontainer.hxx index cb09b72b6692..6a34126af6c0 100644 --- a/svl/source/inc/passwordcontainer.hxx +++ b/svl/source/inc/passwordcontainer.hxx @@ -268,7 +268,7 @@ css::task::UrlRecord find( throw(css::uno::RuntimeException, std::exception); static ::std::vector< OUString > DecodePasswords( const OUString& aLine, const OUString& aMasterPassword ) - throw(css::uno::RuntimeException); + throw(css::uno::RuntimeException, std::exception); static OUString EncodePasswords(const std::vector< OUString >& lines, const OUString& aMasterPassword ) throw(css::uno::RuntimeException); diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index d5be5b4be774..16b3444f8044 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -402,7 +402,6 @@ PasswordContainer::~PasswordContainer() } } - void SAL_CALL PasswordContainer::disposing( const EventObject& ) throw(RuntimeException, std::exception) { ::osl::MutexGuard aGuard( mMutex ); @@ -420,8 +419,7 @@ void SAL_CALL PasswordContainer::disposing( const EventObject& ) throw(RuntimeEx } } - -vector< OUString > PasswordContainer::DecodePasswords( const OUString& aLine, const OUString& aMasterPasswd ) throw(RuntimeException) +vector< OUString > PasswordContainer::DecodePasswords( const OUString& aLine, const OUString& aMasterPasswd ) throw(RuntimeException, std::exception) { if( !aMasterPasswd.isEmpty() ) { |