Related: rhbz#867808 if one person threw by pointer...

then its guaranteed that someone else did too, review
newed Exceptions

Change-Id: Ie1ad78895e443a20a8663666cd6c8d3e5deb0727
This commit is contained in:
Caolán McNamara 2013-04-16 13:59:34 +01:00
parent 2ae513cc22
commit 63b4633cf7
4 changed files with 11 additions and 13 deletions

View File

@ -37,21 +37,21 @@ OUString SAL_CALL
transliteration_Numeric::folding( const OUString& /*inStr*/, sal_Int32 /*startPos*/, sal_Int32 /*nCount*/, Sequence< sal_Int32 >& /*offset*/ )
throw(RuntimeException)
{
throw (new RuntimeException());
throw RuntimeException();
}
sal_Bool SAL_CALL
transliteration_Numeric::equals( const OUString& /*str1*/, sal_Int32 /*pos1*/, sal_Int32 /*nCount1*/, sal_Int32& /*nMatch1*/, const OUString& /*str2*/, sal_Int32 /*pos2*/, sal_Int32 /*nCount2*/, sal_Int32& /*nMatch2*/ )
throw(RuntimeException)
{
throw (new RuntimeException());
throw RuntimeException();
}
Sequence< OUString > SAL_CALL
transliteration_Numeric::transliterateRange( const OUString& /*str1*/, const OUString& /*str2*/ )
throw(RuntimeException)
{
throw (new RuntimeException());
throw RuntimeException();
}

View File

@ -115,7 +115,7 @@ PresenterController::PresenterController (
OSL_ASSERT(mxController.is());
if ( ! mxSlideShowController.is())
throw new lang::IllegalArgumentException(
throw lang::IllegalArgumentException(
"missing slide show controller",
static_cast<XWeak*>(this),
2);

View File

@ -113,7 +113,7 @@ namespace toolkit
{
Window* pWindow = i_rOwningWindow.GetWindow();
if ( !pWindow )
throw new RuntimeException();
throw RuntimeException();
pWindow->AddEventListener( LINK( m_pData.get(), WindowStyleSettings_Data, OnWindowEvent ) );
}

View File

@ -42,10 +42,9 @@ void VCLXWindow::SetSystemParent_Impl( const com::sun::star::uno::Any& rHandle )
Window *pWindow = GetWindow();
if ( pWindow->GetType() != WINDOW_WORKWINDOW )
{
::com::sun::star::uno::Exception *pException =
new ::com::sun::star::uno::RuntimeException;
pException->Message = OUString("not a work window");
throw pException;
com::sun::star::uno::Exception aException;
aException.Message = OUString("not a work window");
throw aException;
}
// use sal_Int64 here to accommodate all int types
@ -73,10 +72,9 @@ void VCLXWindow::SetSystemParent_Impl( const com::sun::star::uno::Any& rHandle )
}
if( bThrow )
{
::com::sun::star::uno::Exception *pException =
new ::com::sun::star::uno::RuntimeException;
pException->Message = OUString("incorrect window handle type");
throw pException;
com::sun::star::uno::Exception aException;
aException.Message = OUString("incorrect window handle type");
throw aException;
}
// create system parent data
SystemParentData aSysParentData;