summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlform.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/html/htmlform.cxx')
-rw-r--r--sw/source/filter/html/htmlform.cxx24
1 files changed, 7 insertions, 17 deletions
diff --git a/sw/source/filter/html/htmlform.cxx b/sw/source/filter/html/htmlform.cxx
index f5d425bb4afb..8e75a53b4be3 100644
--- a/sw/source/filter/html/htmlform.cxx
+++ b/sw/source/filter/html/htmlform.cxx
@@ -380,30 +380,25 @@ public:
// UNO Anbindung
// XImageConsumer
- virtual void SAL_CALL init( sal_Int32 Width, sal_Int32 Height)
- throw( uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL init( sal_Int32 Width, sal_Int32 Height) override;
virtual void SAL_CALL setColorModel(
sal_Int16 BitCount, const uno::Sequence< sal_Int32 >& RGBAPal,
sal_Int32 RedMask, sal_Int32 GreenMask, sal_Int32 BlueMask,
- sal_Int32 AlphaMask)
- throw( uno::RuntimeException, std::exception ) override;
+ sal_Int32 AlphaMask) override;
virtual void SAL_CALL setPixelsByBytes(
sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height,
const uno::Sequence< sal_Int8 >& ProducerData,
- sal_Int32 Offset, sal_Int32 Scansize)
- throw( uno::RuntimeException, std::exception ) override;
+ sal_Int32 Offset, sal_Int32 Scansize) override;
virtual void SAL_CALL setPixelsByLongs(
sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height,
const uno::Sequence< sal_Int32 >& ProducerData,
- sal_Int32 Offset, sal_Int32 Scansize)
- throw( uno::RuntimeException, std::exception ) override;
+ sal_Int32 Offset, sal_Int32 Scansize) override;
virtual void SAL_CALL complete(
sal_Int32 Status,
- const uno::Reference< awt::XImageProducer > & Producer)
- throw( uno::RuntimeException, std::exception ) override;
+ const uno::Reference< awt::XImageProducer > & Producer) override;
// XEventListener
- virtual void SAL_CALL disposing( const EventObject& Source ) throw ( uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL disposing( const EventObject& Source ) override;
};
SwHTMLImageWatcher::SwHTMLImageWatcher(
@@ -448,7 +443,6 @@ void SwHTMLImageWatcher::clear()
}
void SwHTMLImageWatcher::init( sal_Int32 Width, sal_Int32 Height )
- throw( uno::RuntimeException, std::exception )
{
OSL_ENSURE( bSetWidth || bSetHeight,
"Breite oder Hoehe muss angepasst werden" );
@@ -549,27 +543,23 @@ void SwHTMLImageWatcher::init( sal_Int32 Width, sal_Int32 Height )
void SwHTMLImageWatcher::setColorModel(
sal_Int16, const Sequence< sal_Int32 >&, sal_Int32, sal_Int32,
sal_Int32, sal_Int32 )
- throw( uno::RuntimeException, std::exception )
{
}
void SwHTMLImageWatcher::setPixelsByBytes(
sal_Int32, sal_Int32, sal_Int32, sal_Int32,
const Sequence< sal_Int8 >&, sal_Int32, sal_Int32 )
- throw( uno::RuntimeException, std::exception )
{
}
void SwHTMLImageWatcher::setPixelsByLongs(
sal_Int32, sal_Int32, sal_Int32, sal_Int32,
const Sequence< sal_Int32 >&, sal_Int32, sal_Int32 )
- throw( uno::RuntimeException, std::exception )
{
}
void SwHTMLImageWatcher::complete( sal_Int32 Status,
const uno::Reference< awt::XImageProducer >& )
- throw( uno::RuntimeException, std::exception )
{
if( awt::ImageStatus::IMAGESTATUS_ERROR == Status || awt::ImageStatus::IMAGESTATUS_ABORTED == Status )
{
@@ -580,7 +570,7 @@ void SwHTMLImageWatcher::complete( sal_Int32 Status,
}
}
-void SwHTMLImageWatcher::disposing(const lang::EventObject& evt) throw ( uno::RuntimeException, std::exception)
+void SwHTMLImageWatcher::disposing(const lang::EventObject& evt)
{
uno::Reference< awt::XImageConsumer > xTmp;