summaryrefslogtreecommitdiff
path: root/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'accessibility/source/extended/accessibleiconchoicectrlentry.cxx')
-rw-r--r--accessibility/source/extended/accessibleiconchoicectrlentry.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
index 11da75d3c357..1a3c24c322f8 100644
--- a/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
+++ b/accessibility/source/extended/accessibleiconchoicectrlentry.cxx
@@ -138,11 +138,11 @@ throw(RuntimeException, std::exception)
bool AccessibleIconChoiceCtrlEntry::IsShowing_Impl() const
{
bool bShowing = false;
- Reference< XAccessibleContext > m_xParentContext =
+ Reference< XAccessibleContext > xParentContext =
m_xParent.is() ? m_xParent->getAccessibleContext() : Reference< XAccessibleContext >();
- if( m_xParentContext.is() )
+ if( xParentContext.is() )
{
- Reference< XAccessibleComponent > xParentComp( m_xParentContext, uno::UNO_QUERY );
+ Reference< XAccessibleComponent > xParentComp( xParentContext, uno::UNO_QUERY );
if( xParentComp.is() )
bShowing = GetBoundingBox_Impl().IsOver( VCLRectangle( xParentComp->getBounds() ) );
}