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:
@@ -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(
|
||||
|
@@ -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
|
||||
|
@@ -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 ()
|
||||
|
Reference in New Issue
Block a user