diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 14:07:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-27 14:42:21 +0100 |
commit | d39bd60eca9ae7f2755ffb11ab313eb4a6bd7565 (patch) | |
tree | f9a01ccde669765cfd936e03d244d19e59ee64ae | |
parent | 0a76f0da646cf8692738ed416763b5cf33428281 (diff) |
coverity#1308438 Uncaught exception
Change-Id: Ifa00f7776f796fef3bff4e78bedd2fdc47f52025
-rw-r--r-- | svl/source/inc/passwordcontainer.hxx | 2 | ||||
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/inc/passwordcontainer.hxx b/svl/source/inc/passwordcontainer.hxx index 06b15df30fde..df421b5a6560 100644 --- a/svl/source/inc/passwordcontainer.hxx +++ b/svl/source/inc/passwordcontainer.hxx @@ -272,7 +272,7 @@ bool createUrlRecord( const OUString& aURL, const OUString& aName, bool bName, // only needed to support empty user names - const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionHandler >& aHandler ) throw(::com::sun::star::uno::RuntimeException); + const ::com::sun::star::uno::Reference< ::com::sun::star::task::XInteractionHandler >& aHandler ) throw(::com::sun::star::uno::RuntimeException, std::exception); static OUString GetDefaultMasterPassword(); diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index 34843715cd11..6b8fa7fd2ee1 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -758,7 +758,7 @@ UrlRecord PasswordContainer::find( const OUString& aURL, const OUString& aName, bool bName, // only needed to support empty user names - const Reference< XInteractionHandler >& aHandler ) throw(RuntimeException) + const Reference< XInteractionHandler >& aHandler ) throw(RuntimeException, std::exception) { ::osl::MutexGuard aGuard( mMutex ); |