summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterController.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterController.cxx')
-rw-r--r--sdext/source/presenter/PresenterController.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/sdext/source/presenter/PresenterController.cxx b/sdext/source/presenter/PresenterController.cxx
index f6e39cd4b51b..1bb33c46b1e0 100644
--- a/sdext/source/presenter/PresenterController.cxx
+++ b/sdext/source/presenter/PresenterController.cxx
@@ -720,7 +720,6 @@ IPresentationTime* PresenterController::GetPresentationTime()
void SAL_CALL PresenterController::notifyConfigurationChange (
const ConfigurationChangeEvent& rEvent)
- throw (RuntimeException, std::exception)
{
if (rBHelper.bDisposed || rBHelper.bInDispose)
{
@@ -802,7 +801,6 @@ void SAL_CALL PresenterController::notifyConfigurationChange (
void SAL_CALL PresenterController::disposing (
const lang::EventObject& rEvent)
- throw (RuntimeException, std::exception)
{
if (rEvent.Source == mxController)
mxController = nullptr;
@@ -818,7 +816,6 @@ void SAL_CALL PresenterController::disposing (
void SAL_CALL PresenterController::frameAction (
const frame::FrameActionEvent& rEvent)
- throw (RuntimeException, std::exception)
{
if (rEvent.Action == frame::FrameAction_FRAME_ACTIVATED)
{
@@ -830,7 +827,6 @@ void SAL_CALL PresenterController::frameAction (
//----- XKeyListener ----------------------------------------------------------
void SAL_CALL PresenterController::keyPressed (const awt::KeyEvent& rEvent)
- throw (RuntimeException, std::exception)
{
// Tell all views about the unhandled key event.
PresenterPaneContainer::PaneList::const_iterator iPane;
@@ -846,7 +842,6 @@ void SAL_CALL PresenterController::keyPressed (const awt::KeyEvent& rEvent)
}
void SAL_CALL PresenterController::keyReleased (const awt::KeyEvent& rEvent)
- throw (RuntimeException, std::exception)
{
if (rEvent.Source != mxMainWindow)
return;
@@ -1048,13 +1043,11 @@ void PresenterController::HandleNumericKeyPress (
//----- XFocusListener --------------------------------------------------------
void SAL_CALL PresenterController::focusGained (const css::awt::FocusEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
}
void SAL_CALL PresenterController::focusLost (const css::awt::FocusEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
}
@@ -1062,7 +1055,6 @@ void SAL_CALL PresenterController::focusLost (const css::awt::FocusEvent& rEvent
//----- XMouseListener --------------------------------------------------------
void SAL_CALL PresenterController::mousePressed (const css::awt::MouseEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
if (mxMainWindow.is())
@@ -1070,19 +1062,16 @@ void SAL_CALL PresenterController::mousePressed (const css::awt::MouseEvent& rEv
}
void SAL_CALL PresenterController::mouseReleased (const css::awt::MouseEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
}
void SAL_CALL PresenterController::mouseEntered (const css::awt::MouseEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
}
void SAL_CALL PresenterController::mouseExited (const css::awt::MouseEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
}
@@ -1090,13 +1079,11 @@ void SAL_CALL PresenterController::mouseExited (const css::awt::MouseEvent& rEve
//----- XMouseMotionListener --------------------------------------------------
void SAL_CALL PresenterController::mouseMoved (const css::awt::MouseEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
}
void SAL_CALL PresenterController::mouseDragged (const css::awt::MouseEvent& rEvent)
- throw (css::uno::RuntimeException, std::exception)
{
(void)rEvent;
}