svtools: rename IAccessibleTableControl::dispose()

... to not confuse it with XComponent::dispose().

Change-Id: I056fdf77f9116d1c22f8ca9313a0ea313fb1c4aa
This commit is contained in:
Michael Stahl 2013-12-16 16:16:15 +01:00
parent 449e0c9c73
commit 158b4df603
4 changed files with 4 additions and 4 deletions

View File

@ -228,7 +228,7 @@ protected:
{ {
return this; return this;
} }
void dispose(); void DisposeAccessImpl() SAL_OVERRIDE;
virtual sal_Bool isAlive() const virtual sal_Bool isAlive() const
{ {
return isContextAlive(); return isContextAlive();

View File

@ -421,7 +421,7 @@ AccessibleGridControlAccess::~AccessibleGridControlAccess()
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
void AccessibleGridControlAccess::dispose() void AccessibleGridControlAccess::DisposeAccessImpl()
{ {
SolarMutexGuard g; SolarMutexGuard g;

View File

@ -139,7 +139,7 @@ public:
/** disposes the accessible implementation, so that it becomes defunc /** disposes the accessible implementation, so that it becomes defunc
*/ */
virtual void dispose() = 0; virtual void DisposeAccessImpl() = 0;
/** checks whether the accessible implementation, and its context, are still alive /** checks whether the accessible implementation, and its context, are still alive
@return <TRUE/>, if the object is not disposed or disposing. @return <TRUE/>, if the object is not disposed or disposing.

View File

@ -2727,7 +2727,7 @@ namespace svt { namespace table
void TableControl_Impl::disposeAccessible() void TableControl_Impl::disposeAccessible()
{ {
if ( m_pAccessibleTable ) if ( m_pAccessibleTable )
m_pAccessibleTable->dispose(); m_pAccessibleTable->DisposeAccessImpl();
m_pAccessibleTable = NULL; m_pAccessibleTable = NULL;
} }