Kaydet (Commit) 50bd0c85 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1308521 Uncaught exception

Change-Id: I6a189e0d1c4eb04e727fdf12585d46a1f4121f68
üst 7950fc0d
...@@ -324,7 +324,7 @@ protected: ...@@ -324,7 +324,7 @@ protected:
virtual bool implLoadPasswordLibrary( SfxLibrary* pLib, const OUString& Name, virtual bool implLoadPasswordLibrary( SfxLibrary* pLib, const OUString& Name,
bool bVerifyPasswordOnly=false ) bool bVerifyPasswordOnly=false )
throw(::com::sun::star::lang::WrappedTargetException, throw(::com::sun::star::lang::WrappedTargetException,
::com::sun::star::uno::RuntimeException); ::com::sun::star::uno::RuntimeException, std::exception);
virtual void onNewRootStorage() = 0; virtual void onNewRootStorage() = 0;
......
...@@ -75,7 +75,7 @@ class SfxScriptLibraryContainer : public SfxLibraryContainer, public OldBasicPas ...@@ -75,7 +75,7 @@ class SfxScriptLibraryContainer : public SfxLibraryContainer, public OldBasicPas
virtual bool implLoadPasswordLibrary( SfxLibrary* pLib, const OUString& Name, virtual bool implLoadPasswordLibrary( SfxLibrary* pLib, const OUString& Name,
bool bVerifyPasswordOnly=false ) bool bVerifyPasswordOnly=false )
throw(::com::sun::star::lang::WrappedTargetException, throw(::com::sun::star::lang::WrappedTargetException,
::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void onNewRootStorage() SAL_OVERRIDE; virtual void onNewRootStorage() SAL_OVERRIDE;
......
...@@ -1375,7 +1375,7 @@ bool SfxLibraryContainer::implLoadPasswordLibrary( ...@@ -1375,7 +1375,7 @@ bool SfxLibraryContainer::implLoadPasswordLibrary(
SfxLibrary* /*pLib*/, SfxLibrary* /*pLib*/,
const OUString& /*Name*/, const OUString& /*Name*/,
bool /*bVerifyPasswordOnly*/ ) bool /*bVerifyPasswordOnly*/ )
throw(WrappedTargetException, RuntimeException) throw(WrappedTargetException, RuntimeException, std::exception)
{ {
return true; return true;
} }
......
...@@ -877,7 +877,7 @@ bool SfxScriptLibraryContainer::implStorePasswordLibrary( SfxLibrary* pLib, cons ...@@ -877,7 +877,7 @@ bool SfxScriptLibraryContainer::implStorePasswordLibrary( SfxLibrary* pLib, cons
bool SfxScriptLibraryContainer::implLoadPasswordLibrary bool SfxScriptLibraryContainer::implLoadPasswordLibrary
( SfxLibrary* pLib, const OUString& Name, bool bVerifyPasswordOnly ) ( SfxLibrary* pLib, const OUString& Name, bool bVerifyPasswordOnly )
throw(WrappedTargetException, RuntimeException) throw(WrappedTargetException, RuntimeException, std::exception)
{ {
bool bRet = true; bool bRet = true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment