cppuhelper: retrofit std::exception into overriding exception specs
Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
using namespace ::com::sun::star;
|
||||
|
||||
::sal_Bool SAL_CALL ComEnumerationWrapper::hasMoreElements()
|
||||
throw ( uno::RuntimeException )
|
||||
throw ( uno::RuntimeException, std::exception )
|
||||
{
|
||||
sal_Bool bResult = sal_False;
|
||||
|
||||
@@ -43,7 +43,7 @@ using namespace ::com::sun::star;
|
||||
uno::Any SAL_CALL ComEnumerationWrapper::nextElement()
|
||||
throw ( container::NoSuchElementException,
|
||||
lang::WrappedTargetException,
|
||||
uno::RuntimeException )
|
||||
uno::RuntimeException, std::exception )
|
||||
{
|
||||
try
|
||||
{
|
||||
|
Reference in New Issue
Block a user