diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-04-06 12:16:19 +0200 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-04-06 12:16:19 +0200 |
commit | 3f6153e0e46c211d439ef88c073740672655fca4 (patch) | |
tree | 961310f8e4aca2725741e46b386ac013046e15b0 /accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx | |
parent | 3674601559fe0d71fb64ee82705755f0de562dc7 (diff) |
slidecopy: silence warning 'bout unused parameters
Diffstat (limited to 'accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx')
-rw-r--r-- | accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx b/accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx index 50173a8ea..de91715a6 100644 --- a/accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx +++ b/accessibility/source/extended/AccessibleToolPanelDeckTabBarItem.cxx @@ -199,6 +199,7 @@ namespace accessibility //------------------------------------------------------------------------------------------------------------------ void AccessibleToolPanelDeckTabBarItem_Impl::PanelInserted( const ::svt::PToolPanel& i_pPanel, const size_t i_nPosition ) { + (void)i_pPanel; if ( i_nPosition <= m_nItemPos ) ++m_nItemPos; impl_notifyBoundRectChanges(); @@ -236,6 +237,7 @@ namespace accessibility //------------------------------------------------------------------------------------------------------------------ void AccessibleToolPanelDeckTabBarItem_Impl::LayouterChanged( const ::svt::PDeckLayouter& i_rNewLayouter ) { + (void)i_rNewLayouter; // if the tool panel deck has a new layouter, then the old layouter, and thus all items it was // responsible for, died. So do we. dispose(); @@ -296,6 +298,7 @@ namespace accessibility //-------------------------------------------------------------------- Reference< XAccessible > SAL_CALL AccessibleToolPanelDeckTabBarItem::getAccessibleChild( sal_Int32 i ) throw (IndexOutOfBoundsException, RuntimeException) { + (void)i; throw IndexOutOfBoundsException( ::rtl::OUString(), *this ); } @@ -371,6 +374,7 @@ namespace accessibility { ItemMethodGuard aGuard( *m_pImpl ); // we do not have children ... + (void)i_rLocation; return NULL; } |