coverity#707393 Uncaught exception

Change-Id: I89ea074bacf7884fe8b8471cfd208f643326a7e1
This commit is contained in:
Caolán McNamara
2014-06-13 12:28:36 +01:00
parent 4a662ef739
commit e2ae9f3e8c
3 changed files with 7 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ interface XRange
[attribute] long End;
[attribute, readonly] XListFormat ListFormat;
void InsertBreak( [in] any Type );
void InsertBreak( [in] any Type ) raises (com::sun::star::script::BasicErrorException);
void Select();
void InsertParagraph();
void InsertParagraphBefore();

View File

@@ -168,7 +168,8 @@ SwVbaRange::setText( const OUString& rText ) throw ( uno::RuntimeException, std:
}
// FIXME: test is not pass
void SAL_CALL SwVbaRange::InsertBreak( const uno::Any& _breakType ) throw (uno::RuntimeException, std::exception)
void SAL_CALL SwVbaRange::InsertBreak(const uno::Any& _breakType)
throw (css::script::BasicErrorException, uno::RuntimeException, std::exception)
{
// default type is wdPageBreak;
sal_Int32 nBreakType = word::WdBreakType::wdPageBreak;

View File

@@ -66,7 +66,10 @@ public:
virtual css::uno::Reference< ooo::vba::word::XFont > SAL_CALL getFont() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Reference< ooo::vba::word::XListFormat > SAL_CALL getListFormat() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// Methods
virtual void SAL_CALL InsertBreak( const css::uno::Any& _breakType ) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL InsertBreak(const css::uno::Any& _breakType)
throw (css::script::BasicErrorException,
css::uno::RuntimeException,
std::exception) SAL_OVERRIDE;
virtual void SAL_CALL Select() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL InsertParagraph() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL InsertParagraphBefore() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;