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-13 06:25:02 +0000
commit302866858f1f1c194cadab5d01c2e912034c6c63 (patch)
treeee04e14ccf8660216942b0a94f82ae52ba9f748b /accessibility/source
parented7361ef0bdb6bee4f47a8421221eb7824f02e38 (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: Iced570b8647325a3bd4c0927edf7461598398e04 Reviewed-on: https://gerrit.libreoffice.org/19333 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 ()