silence coverity#1399176 Uncaught exception

and probably a bunch of others

Change-Id: If4556e8914c770456f9de729426c52d5e27cb691
Reviewed-on: https://gerrit.libreoffice.org/44777
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
This commit is contained in:
Caolán McNamara 2017-11-15 17:23:10 +00:00
parent 7719c53b2b
commit 5f9dd5914b
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ private:
protected:
SwTextAttr( SfxPoolItem& rAttr, sal_Int32 nStart );
virtual ~SwTextAttr();
virtual ~SwTextAttr() COVERITY_NOEXCEPT_FALSE;
void SetLockExpandFlag( bool bFlag ) { m_bLockExpandFlag = bFlag; }
void SetDontMoveAttr( bool bFlag ) { m_bDontMoveAttr = bFlag; }

View file

@ -42,7 +42,7 @@ SwTextAttr::SwTextAttr( SfxPoolItem& rAttr, sal_Int32 nStart )
{
}
SwTextAttr::~SwTextAttr( )
SwTextAttr::~SwTextAttr() COVERITY_NOEXCEPT_FALSE
{
}