summaryrefslogtreecommitdiff
path: root/accessibility/source
diff options
context:
space:
mode:
authorDouglas Mencken <dougmencken@gmail.com>2015-10-10 20:02:49 -0400
committerNoel Grandin <noelgrandin@gmail.com>2015-10-28 06:37:44 +0000
commit604c6cf42f1d136e5c076b4ae17bec86e7e1a206 (patch)
tree251af11b3d058c25c01520e0d03207b06f2d558c /accessibility/source
parent10e4396dc7c96061750208c32f29c372737f63d2 (diff)
bin confusion with name AccessibleGridControlTableImplHelper
AccessibleGridControlTableBase.hxx : typedef ::cppu::ImplHelper< css::accessibility::XAccessibleTable > AccessibleGridControlTableImplHelper; AccessibleGridControlTable.hxx : typedef ::cppu::ImplHelper< css::accessibility::XAccessibleSelection > AccessibleGridControlTableImplHelper1; Change-Id: Icde57d148cf725a3bd4c0927edf7461598398e04 Reviewed-on: https://gerrit.libreoffice.org/19348 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'accessibility/source')
-rw-r--r--accessibility/source/extended/AccessibleGridControlTable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/accessibility/source/extended/AccessibleGridControlTable.cxx b/accessibility/source/extended/AccessibleGridControlTable.cxx
index 0e459996b5ac..54b63c4c7e5d 100644
--- a/accessibility/source/extended/AccessibleGridControlTable.cxx
+++ b/accessibility/source/extended/AccessibleGridControlTable.cxx
@@ -320,7 +320,7 @@ Any SAL_CALL AccessibleGridControlTable::queryInterface( const uno::Type& rType
{
Any aAny( AccessibleGridControlTableBase::queryInterface( rType ) );
return aAny.hasValue() ?
- aAny : AccessibleGridControlTableImplHelper1::queryInterface( rType );
+ aAny : AccessibleGridControlTableSelectionImplHelper::queryInterface( rType );
}
void SAL_CALL AccessibleGridControlTable::acquire() throw ()