diff options
Diffstat (limited to 'sdext/source/presenter/PresenterController.hxx')
-rw-r--r-- | sdext/source/presenter/PresenterController.hxx | 39 |
1 files changed, 13 insertions, 26 deletions
diff --git a/sdext/source/presenter/PresenterController.hxx b/sdext/source/presenter/PresenterController.hxx index d9eef94da5b9..958d5c3ef26c 100644 --- a/sdext/source/presenter/PresenterController.hxx +++ b/sdext/source/presenter/PresenterController.hxx @@ -145,56 +145,43 @@ public: // XConfigurationChangeListener virtual void SAL_CALL notifyConfigurationChange ( - const css::drawing::framework::ConfigurationChangeEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + const css::drawing::framework::ConfigurationChangeEvent& rEvent) override; // XEventListener virtual void SAL_CALL disposing ( - const css::lang::EventObject& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + const css::lang::EventObject& rEvent) override; // XFrameActionListener virtual void SAL_CALL frameAction ( - const css::frame::FrameActionEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + const css::frame::FrameActionEvent& rEvent) override; // XKeyListener - virtual void SAL_CALL keyPressed (const css::awt::KeyEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; - virtual void SAL_CALL keyReleased (const css::awt::KeyEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL keyPressed (const css::awt::KeyEvent& rEvent) override; + virtual void SAL_CALL keyReleased (const css::awt::KeyEvent& rEvent) override; // XFocusListener - virtual void SAL_CALL focusGained (const css::awt::FocusEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; - virtual void SAL_CALL focusLost (const css::awt::FocusEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL focusGained (const css::awt::FocusEvent& rEvent) override; + virtual void SAL_CALL focusLost (const css::awt::FocusEvent& rEvent) override; // XMouseListener - virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent) override; - virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent) override; - virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent) override; - virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent) override; // XMouseMotionListener - virtual void SAL_CALL mouseMoved (const css::awt::MouseEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL mouseMoved (const css::awt::MouseEvent& rEvent) override; - virtual void SAL_CALL mouseDragged (const css::awt::MouseEvent& rEvent) - throw (css::uno::RuntimeException, std::exception) override; + virtual void SAL_CALL mouseDragged (const css::awt::MouseEvent& rEvent) override; private: typedef ::std::map<css::uno::Reference<css::frame::XFrame>,rtl::Reference<PresenterController> > InstanceContainer; |