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

coverity#737149 Uncaught exception

Change-Id: I34b31a3574e5a21a506c49b4f69f3b8c8fbdcdbd
üst 3d96b1e0
......@@ -207,7 +207,9 @@ ImageProducer::~ImageProducer()
// ------------------------------------------------------------
void ImageProducer::addConsumer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XImageConsumer >& rxConsumer ) throw(::com::sun::star::uno::RuntimeException)
void ImageProducer::addConsumer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XImageConsumer >& rxConsumer )
throw(::com::sun::star::uno::RuntimeException,
std::exception)
{
DBG_ASSERT( rxConsumer.is(), "::AddConsumer(...): No consumer referenced!" );
if( rxConsumer.is() )
......
......@@ -87,7 +87,9 @@ public:
void setImage( ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > & rStmRef );
// ::com::sun::star::awt::XImageProducer
void SAL_CALL addConsumer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XImageConsumer >& rxConsumer ) throw(::com::sun::star::uno::RuntimeException);
void SAL_CALL addConsumer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XImageConsumer >& rxConsumer )
throw(::com::sun::star::uno::RuntimeException,
std::exception);
void SAL_CALL removeConsumer( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XImageConsumer >& rxConsumer ) throw(::com::sun::star::uno::RuntimeException);
void SAL_CALL startProduction( ) throw(::com::sun::star::uno::RuntimeException);
......
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