Kaydet (Commit) 158b4df6 authored tarafından Michael Stahl's avatar Michael Stahl

svtools: rename IAccessibleTableControl::dispose()

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

Change-Id: I056fdf77f9116d1c22f8ca9313a0ea313fb1c4aa
üst 449e0c9c
...@@ -228,7 +228,7 @@ protected: ...@@ -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();
......
...@@ -421,7 +421,7 @@ AccessibleGridControlAccess::~AccessibleGridControlAccess() ...@@ -421,7 +421,7 @@ AccessibleGridControlAccess::~AccessibleGridControlAccess()
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
void AccessibleGridControlAccess::dispose() void AccessibleGridControlAccess::DisposeAccessImpl()
{ {
SolarMutexGuard g; SolarMutexGuard g;
......
...@@ -139,7 +139,7 @@ public: ...@@ -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.
......
...@@ -2727,7 +2727,7 @@ namespace svt { namespace table ...@@ -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;
} }
......
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