summaryrefslogtreecommitdiff
path: root/sfx2/source/sidebar
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-07-08 22:15:38 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-07-12 18:56:48 +0200
commit24c174d7d190580a338b2352ea79e216be50f787 (patch)
tree23db07f6e02c2ab140e7f48d55883722689310e4 /sfx2/source/sidebar
parentbde2fde07a00c89a27c13cd7f5e6fe666ea73030 (diff)
no need for handling unused arguments like that
Change-Id: I04fa1b854e41a4cbeea0586bc583c58298d96306
Diffstat (limited to 'sfx2/source/sidebar')
-rw-r--r--sfx2/source/sidebar/SidebarController.cxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index b5865c40cbbc..d73a0d95b71f 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -273,19 +273,15 @@ void SAL_CALL SidebarController::notifyContextChangeEvent (const css::ui::Contex
}
}
-void SAL_CALL SidebarController::disposing (const css::lang::EventObject& rEventObject)
+void SAL_CALL SidebarController::disposing (const css::lang::EventObject& )
throw(css::uno::RuntimeException, std::exception)
{
- (void)rEventObject;
-
dispose();
}
-void SAL_CALL SidebarController::propertyChange (const css::beans::PropertyChangeEvent& rEvent)
+void SAL_CALL SidebarController::propertyChange (const css::beans::PropertyChangeEvent& )
throw(css::uno::RuntimeException, std::exception)
{
- (void)rEvent;
-
maPropertyChangeForwarder.RequestCall();
}