summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/eventmultiplexer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine/eventmultiplexer.cxx')
-rw-r--r--slideshow/source/engine/eventmultiplexer.cxx35
1 files changed, 14 insertions, 21 deletions
diff --git a/slideshow/source/engine/eventmultiplexer.cxx b/slideshow/source/engine/eventmultiplexer.cxx
index 472d85d82d65..c707af32e91e 100644
--- a/slideshow/source/engine/eventmultiplexer.cxx
+++ b/slideshow/source/engine/eventmultiplexer.cxx
@@ -125,24 +125,17 @@ public:
virtual void SAL_CALL disposing() override;
private:
- virtual void SAL_CALL disposing( const lang::EventObject& Source )
- throw (uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL disposing( const lang::EventObject& Source ) override;
// XMouseListener implementation
- virtual void SAL_CALL mousePressed( const awt::MouseEvent& e )
- throw (uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL mouseReleased( const awt::MouseEvent& e )
- throw (uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL mouseEntered( const awt::MouseEvent& e )
- throw (uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL mouseExited( const awt::MouseEvent& e )
- throw (uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL mousePressed( const awt::MouseEvent& e ) override;
+ virtual void SAL_CALL mouseReleased( const awt::MouseEvent& e ) override;
+ virtual void SAL_CALL mouseEntered( const awt::MouseEvent& e ) override;
+ virtual void SAL_CALL mouseExited( const awt::MouseEvent& e ) override;
// XMouseMotionListener implementation
- virtual void SAL_CALL mouseDragged( const awt::MouseEvent& e )
- throw (uno::RuntimeException, std::exception) override;
- virtual void SAL_CALL mouseMoved( const awt::MouseEvent& e )
- throw (uno::RuntimeException, std::exception) override;
+ virtual void SAL_CALL mouseDragged( const awt::MouseEvent& e ) override;
+ virtual void SAL_CALL mouseMoved( const awt::MouseEvent& e ) override;
EventQueue* mpEventQueue;
@@ -309,7 +302,7 @@ void SAL_CALL EventMultiplexerListener::disposing()
}
void SAL_CALL EventMultiplexerListener::disposing(
- const lang::EventObject& /*rSource*/ ) throw (uno::RuntimeException, std::exception)
+ const lang::EventObject& /*rSource*/ )
{
// there's no real point in acting on this message - after all,
// the event sources are the XSlideShowViews, which must be
@@ -321,7 +314,7 @@ void SAL_CALL EventMultiplexerListener::disposing(
}
void SAL_CALL EventMultiplexerListener::mousePressed(
- const awt::MouseEvent& e ) throw (uno::RuntimeException, std::exception)
+ const awt::MouseEvent& e )
{
osl::MutexGuard const guard( m_aMutex );
@@ -336,7 +329,7 @@ void SAL_CALL EventMultiplexerListener::mousePressed(
}
void SAL_CALL EventMultiplexerListener::mouseReleased(
- const awt::MouseEvent& e ) throw (uno::RuntimeException, std::exception)
+ const awt::MouseEvent& e )
{
osl::MutexGuard const guard( m_aMutex );
@@ -351,20 +344,20 @@ void SAL_CALL EventMultiplexerListener::mouseReleased(
}
void SAL_CALL EventMultiplexerListener::mouseEntered(
- const awt::MouseEvent& /*e*/ ) throw (uno::RuntimeException, std::exception)
+ const awt::MouseEvent& /*e*/ )
{
// not used here
}
void SAL_CALL EventMultiplexerListener::mouseExited(
- const awt::MouseEvent& /*e*/ ) throw (uno::RuntimeException, std::exception)
+ const awt::MouseEvent& /*e*/ )
{
// not used here
}
// XMouseMotionListener implementation
void SAL_CALL EventMultiplexerListener::mouseDragged(
- const awt::MouseEvent& e ) throw (uno::RuntimeException, std::exception)
+ const awt::MouseEvent& e )
{
osl::MutexGuard const guard( m_aMutex );
@@ -379,7 +372,7 @@ void SAL_CALL EventMultiplexerListener::mouseDragged(
}
void SAL_CALL EventMultiplexerListener::mouseMoved(
- const awt::MouseEvent& e ) throw (uno::RuntimeException, std::exception)
+ const awt::MouseEvent& e )
{
osl::MutexGuard const guard( m_aMutex );