Kaydet (Commit) 11b3555e authored tarafından Noel Grandin's avatar Noel Grandin

Revert "bin confusion with name AccessibleGridControlTableImplHelper"

This reverts commit 30286685, I suspect it depends on
another commit which is not yet pushed.
üst 51305727
......@@ -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 ()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment