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 @@ ...@@ -22,7 +22,7 @@
#define INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLEGRIDCONTROLTABLE_HXX #define INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLEGRIDCONTROLTABLE_HXX
#include "accessibility/extended/AccessibleGridControlTableBase.hxx" #include "accessibility/extended/AccessibleGridControlTableBase.hxx"
#include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase1.hxx>
#include <com/sun/star/accessibility/XAccessibleSelection.hpp> #include <com/sun/star/accessibility/XAccessibleSelection.hpp>
#include <accessibility/extended/AccessibleGridControlTableCell.hxx> #include <accessibility/extended/AccessibleGridControlTableCell.hxx>
...@@ -31,12 +31,12 @@ ...@@ -31,12 +31,12 @@
namespace accessibility { namespace accessibility {
typedef ::cppu::ImplHelper < css::accessibility::XAccessibleSelection > typedef ::cppu::ImplHelper1< css::accessibility::XAccessibleSelection >
AccessibleGridControlTableSelectionImplHelper; AccessibleGridControlTableImplHelper1;
/** This class represents the accessible object of the data table of a /** This class represents the accessible object of the data table of a
Grid control. */ Grid control. */
class AccessibleGridControlTable : public AccessibleGridControlTableBase, class AccessibleGridControlTable : public AccessibleGridControlTableBase,
public AccessibleGridControlTableSelectionImplHelper public AccessibleGridControlTableImplHelper1
{ {
public: public:
AccessibleGridControlTable( AccessibleGridControlTable(
......
...@@ -22,14 +22,14 @@ ...@@ -22,14 +22,14 @@
#define INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLEGRIDCONTROLTABLEBASE_HXX #define INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_EXTENDED_ACCESSIBLEGRIDCONTROLTABLEBASE_HXX
#include "accessibility/extended/AccessibleGridControlBase.hxx" #include "accessibility/extended/AccessibleGridControlBase.hxx"
#include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase1.hxx>
#include <com/sun/star/accessibility/XAccessibleTable.hpp> #include <com/sun/star/accessibility/XAccessibleTable.hpp>
namespace accessibility { namespace accessibility {
typedef ::cppu::ImplHelper < css::accessibility::XAccessibleTable > typedef ::cppu::ImplHelper1< css::accessibility::XAccessibleTable >
AccessibleGridControlTableImplHelper; AccessibleGridControlTableImplHelper;
/** The Grid Control accessible table objects inherit from this base class. It /** 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 ...@@ -320,7 +320,7 @@ Any SAL_CALL AccessibleGridControlTable::queryInterface( const uno::Type& rType
{ {
Any aAny( AccessibleGridControlTableBase::queryInterface( rType ) ); Any aAny( AccessibleGridControlTableBase::queryInterface( rType ) );
return aAny.hasValue() ? return aAny.hasValue() ?
aAny : AccessibleGridControlTableSelectionImplHelper::queryInterface( rType ); aAny : AccessibleGridControlTableImplHelper1::queryInterface( rType );
} }
void SAL_CALL AccessibleGridControlTable::acquire() throw () 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