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

coverity#707311 Uncaught exception

Change-Id: Ifdab456cb545e552a2efaed03ff00aeac874d47d
üst 8de4c736
......@@ -22,7 +22,7 @@
#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/beans/PropertyValues.idl>
#include <com/sun/star/lang/IllegalArgumentException.idl>
#include <com/sun/star/beans/PropertyVetoException,idl>
#include <com/sun/star/beans/UnknownPropertyException.idl>
#include <com/sun/star/text/XTextRange.idl>
#include <com/sun/star/text/XTextContent.idl>
......@@ -57,7 +57,8 @@ interface XTextConvert : com::sun::star::uno::XInterface
[in] com::sun::star::text::XTextRange End,
[in] com::sun::star::beans::PropertyValues FrameProperties )
raises( com::sun::star::lang::IllegalArgumentException,
com::sun::star::beans::UnknownPropertyException );
com::sun::star::beans::UnknownPropertyException,
com::sun::star::beans::PropertyVetoException );
/** converts the paragraphs marked in TableRanges into a table.
......
......@@ -284,6 +284,7 @@ public:
::com::sun::star::beans::PropertyValue >& xFrameProperties)
throw (css::lang::IllegalArgumentException,
css::beans::UnknownPropertyException,
css::beans::PropertyVetoException,
css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Reference<
::com::sun::star::text::XTextTable > SAL_CALL
......
......@@ -1525,7 +1525,7 @@ SwXText::convertToTextFrame(
const uno::Reference< text::XTextRange >& xEnd,
const uno::Sequence< beans::PropertyValue >& rFrameProperties)
throw (lang::IllegalArgumentException, beans::UnknownPropertyException,
uno::RuntimeException, std::exception)
beans::PropertyVetoException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
......
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