summaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-04-01 09:26:27 +0200
committerFrank Schoenheit [fs] <frank.schoenheit@sun.com>2010-04-01 09:26:27 +0200
commitcdad00eca4f1e760c26348db521130c25e89f45b (patch)
treef9b6acb6b151df2782938e86f0fa77e401625dcb /accessibility
parentc2a2aea56c097fbe996eb44ec0abf8d975fd639a (diff)
slidecopy: #i10000# (unxlngi6)
Diffstat (limited to 'accessibility')
-rwxr-xr-xaccessibility/source/extended/AccessibleToolPanelDeck.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/accessibility/source/extended/AccessibleToolPanelDeck.cxx b/accessibility/source/extended/AccessibleToolPanelDeck.cxx
index 2a1fe5cd507e..753c4ba20efe 100755
--- a/accessibility/source/extended/AccessibleToolPanelDeck.cxx
+++ b/accessibility/source/extended/AccessibleToolPanelDeck.cxx
@@ -304,6 +304,7 @@ namespace accessibility
{
MethodGuard aGuard( *this );
+ (void)i_rNewLayouter;
m_rAntiImpl.NotifyAccessibleEvent( AccessibleEventId::INVALIDATE_ALL_CHILDREN, Any(), Any() );
}
@@ -348,10 +349,10 @@ namespace accessibility
{
MethodGuard aGuard( *m_pImpl );
- if ( ( i_nIndex < 0 ) || ( i_nIndex > m_pImpl->m_pPanelDeck->GetPanelCount() ) )
+ if ( ( i_nIndex < 0 ) || ( size_t( i_nIndex ) > m_pImpl->m_pPanelDeck->GetPanelCount() ) )
throw IndexOutOfBoundsException( ::rtl::OUString(), *this );
- if ( i_nIndex < m_pImpl->m_pPanelDeck->GetPanelCount() )
+ if ( size_t( i_nIndex ) < m_pImpl->m_pPanelDeck->GetPanelCount() )
return m_pImpl->getPanelItemAccessible( i_nIndex, true );
return m_pImpl->getActivePanelAccessible();
@@ -417,6 +418,7 @@ namespace accessibility
{
// don't let the base class generate any A11Y events from VclWindowEvent, we completely manage those
// A11Y events ourself
+ (void)i_rVclWindowEvent;
return NULL;
}