Revert "bin confusion with name AccessibleGridControlTableImplHelper"

This reverts commit 302866858f, I suspect it depends on
another commit which is not yet pushed.
This commit is contained in:
Noel Grandin
2015-10-13 08:49:00 +02:00
parent 5130572761
commit 11b3555e2f
3 changed files with 7 additions and 7 deletions

View File

@@ -22,7 +22,7 @@
#define INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLEGRIDCONTROLTABLE_HXX
#include "accessibility/extended/AccessibleGridControlTableBase.hxx"
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implbase1.hxx>
#include <com/sun/star/accessibility/XAccessibleSelection.hpp>
#include <accessibility/extended/AccessibleGridControlTableCell.hxx>
@@ -31,12 +31,12 @@
namespace accessibility {
typedef ::cppu::ImplHelper < css::accessibility::XAccessibleSelection >
AccessibleGridControlTableSelectionImplHelper;
typedef ::cppu::ImplHelper1< css::accessibility::XAccessibleSelection >
AccessibleGridControlTableImplHelper1;
/** This class represents the accessible object of the data table of a
Grid control. */
class AccessibleGridControlTable : public AccessibleGridControlTableBase,
public AccessibleGridControlTableSelectionImplHelper
public AccessibleGridControlTableImplHelper1
{
public:
AccessibleGridControlTable(

View File

@@ -22,14 +22,14 @@
#define INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLEGRIDCONTROLTABLEBASE_HXX
#include "accessibility/extended/AccessibleGridControlBase.hxx"
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implbase1.hxx>
#include <com/sun/star/accessibility/XAccessibleTable.hpp>
namespace accessibility {
typedef ::cppu::ImplHelper < css::accessibility::XAccessibleTable >
typedef ::cppu::ImplHelper1< css::accessibility::XAccessibleTable >
AccessibleGridControlTableImplHelper;
/** The Grid Control accessible table objects inherit from this base class. It

View File

@@ -320,7 +320,7 @@ Any SAL_CALL AccessibleGridControlTable::queryInterface( const uno::Type& rType
{
Any aAny( AccessibleGridControlTableBase::queryInterface( rType ) );
return aAny.hasValue() ?
aAny : AccessibleGridControlTableSelectionImplHelper::queryInterface( rType );
aAny : AccessibleGridControlTableImplHelper1::queryInterface( rType );
}
void SAL_CALL AccessibleGridControlTable::acquire() throw ()