No more need for PartialWeakComponentImplHelper here
...since 70626249cd
"API CHANGE a11y unpublishing
and add/removeListener rename."
Change-Id: I89d81326d97712abcac94c3436a13905954c55cf
This commit is contained in:
@@ -79,7 +79,7 @@ struct AccessibleElementInfo
|
|||||||
|
|
||||||
namespace impl
|
namespace impl
|
||||||
{
|
{
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper6<
|
typedef ::cppu::WeakComponentImplHelper6<
|
||||||
::com::sun::star::accessibility::XAccessible,
|
::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
::com::sun::star::accessibility::XAccessibleComponent,
|
::com::sun::star::accessibility::XAccessibleComponent,
|
||||||
@@ -221,14 +221,6 @@ protected:
|
|||||||
void SetInfo( const AccessibleElementInfo & rNewInfo );
|
void SetInfo( const AccessibleElementInfo & rNewInfo );
|
||||||
AccessibleUniqueId GetId() const { return m_aAccInfo.m_aOID;}
|
AccessibleUniqueId GetId() const { return m_aAccInfo.m_aOID;}
|
||||||
|
|
||||||
// ________ XComponent ________
|
|
||||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
// ________ WeakComponentImplHelper (XComponent::dispose) ________
|
// ________ WeakComponentImplHelper (XComponent::dispose) ________
|
||||||
virtual void SAL_CALL disposing() SAL_OVERRIDE;
|
virtual void SAL_CALL disposing() SAL_OVERRIDE;
|
||||||
|
|
||||||
|
@@ -658,15 +658,6 @@ namespace comphelper
|
|||||||
if ( nClientId )
|
if ( nClientId )
|
||||||
AccessibleEventNotifier::revokeClientNotifyDisposing( nClientId, *this );
|
AccessibleEventNotifier::revokeClientNotifyDisposing( nClientId, *this );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void SAL_CALL OAccessibleContextWrapper::dispose() throw( RuntimeException, std::exception )
|
|
||||||
{
|
|
||||||
// simply disambiguate
|
|
||||||
WeakComponentImplHelperBase::dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
} // namespace accessibility
|
} // namespace accessibility
|
||||||
|
|
||||||
|
|
||||||
|
@@ -42,17 +42,10 @@ namespace accessibility {
|
|||||||
|
|
||||||
//===== internal ============================================================
|
//===== internal ============================================================
|
||||||
|
|
||||||
// Define a shortcut for the somewhot longish base class name.
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper4<
|
|
||||||
::com::sun::star::accessibility::XAccessible,
|
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
|
||||||
::com::sun::star::lang::XServiceInfo> BaseClass;
|
|
||||||
|
|
||||||
AccessibleContextBase::AccessibleContextBase (
|
AccessibleContextBase::AccessibleContextBase (
|
||||||
const uno::Reference<XAccessible>& rxParent,
|
const uno::Reference<XAccessible>& rxParent,
|
||||||
const sal_Int16 aRole)
|
const sal_Int16 aRole)
|
||||||
: BaseClass (MutexOwner::maMutex),
|
: WeakComponentImplHelper4 (MutexOwner::maMutex),
|
||||||
mxStateSet (NULL),
|
mxStateSet (NULL),
|
||||||
mxRelationSet (NULL),
|
mxRelationSet (NULL),
|
||||||
mxParent(rxParent),
|
mxParent(rxParent),
|
||||||
@@ -495,7 +488,7 @@ uno::Sequence< ::com::sun::star::uno::Type>
|
|||||||
|
|
||||||
// This class supports no interfaces on its own. Just return those
|
// This class supports no interfaces on its own. Just return those
|
||||||
// supported by the base class.
|
// supported by the base class.
|
||||||
return BaseClass::getTypes();
|
return WeakComponentImplHelper4::getTypes();
|
||||||
}
|
}
|
||||||
|
|
||||||
uno::Sequence<sal_Int8> SAL_CALL
|
uno::Sequence<sal_Int8> SAL_CALL
|
||||||
|
@@ -235,7 +235,7 @@ namespace comphelper
|
|||||||
|
|
||||||
//= OAccessibleContextWrapper
|
//= OAccessibleContextWrapper
|
||||||
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper2< ::com::sun::star::accessibility::XAccessibleEventBroadcaster
|
typedef ::cppu::WeakComponentImplHelper2< ::com::sun::star::accessibility::XAccessibleEventBroadcaster
|
||||||
, ::com::sun::star::accessibility::XAccessibleContext
|
, ::com::sun::star::accessibility::XAccessibleContext
|
||||||
> OAccessibleContextWrapper_CBase;
|
> OAccessibleContextWrapper_CBase;
|
||||||
|
|
||||||
@@ -296,13 +296,6 @@ namespace comphelper
|
|||||||
// OAccessibleContextWrapper
|
// OAccessibleContextWrapper
|
||||||
virtual void notifyTranslatedEvent( const ::com::sun::star::accessibility::AccessibleEventObject& _rEvent ) throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
|
virtual void notifyTranslatedEvent( const ::com::sun::star::accessibility::AccessibleEventObject& _rEvent ) throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
|
||||||
|
|
||||||
// XComponent
|
|
||||||
virtual void SAL_CALL dispose() throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
// OComponentHelper
|
// OComponentHelper
|
||||||
using OAccessibleContextWrapperHelper::disposing;
|
using OAccessibleContextWrapperHelper::disposing;
|
||||||
virtual void SAL_CALL disposing() throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
|
virtual void SAL_CALL disposing() throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
|
||||||
|
@@ -52,7 +52,7 @@ struct MutexOwner {mutable ::osl::Mutex maMutex;};
|
|||||||
*/
|
*/
|
||||||
class EDITENG_DLLPUBLIC AccessibleContextBase
|
class EDITENG_DLLPUBLIC AccessibleContextBase
|
||||||
: public MutexOwner,
|
: public MutexOwner,
|
||||||
public cppu::PartialWeakComponentImplHelper4<
|
public cppu::WeakComponentImplHelper4<
|
||||||
::com::sun::star::accessibility::XAccessible,
|
::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
||||||
|
@@ -46,7 +46,7 @@
|
|||||||
|
|
||||||
namespace accessibility
|
namespace accessibility
|
||||||
{
|
{
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper9< ::com::sun::star::accessibility::XAccessible,
|
typedef ::cppu::WeakComponentImplHelper9< ::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
::com::sun::star::accessibility::XAccessibleComponent,
|
::com::sun::star::accessibility::XAccessibleComponent,
|
||||||
::com::sun::star::accessibility::XAccessibleEditableText,
|
::com::sun::star::accessibility::XAccessibleEditableText,
|
||||||
|
@@ -39,7 +39,7 @@ class SlideSorter;
|
|||||||
|
|
||||||
namespace accessibility {
|
namespace accessibility {
|
||||||
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper5<
|
typedef ::cppu::WeakComponentImplHelper5<
|
||||||
::com::sun::star::accessibility::XAccessible,
|
::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
@@ -84,15 +84,6 @@ public:
|
|||||||
|
|
||||||
virtual void SAL_CALL disposing() SAL_OVERRIDE;
|
virtual void SAL_CALL disposing() SAL_OVERRIDE;
|
||||||
|
|
||||||
//===== XComponent ==============================================
|
|
||||||
|
|
||||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
//===== XAccessible =======================================================
|
//===== XAccessible =======================================================
|
||||||
|
|
||||||
virtual ::com::sun::star::uno::Reference<
|
virtual ::com::sun::star::uno::Reference<
|
||||||
|
@@ -44,7 +44,7 @@ namespace accessibility {
|
|||||||
|
|
||||||
class AccessibleSlideSorterObject;
|
class AccessibleSlideSorterObject;
|
||||||
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper6<
|
typedef ::cppu::WeakComponentImplHelper6<
|
||||||
::com::sun::star::accessibility::XAccessible,
|
::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
@@ -89,15 +89,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
AccessibleSlideSorterObject* GetAccessibleChildImplementation (sal_Int32 nIndex);
|
AccessibleSlideSorterObject* GetAccessibleChildImplementation (sal_Int32 nIndex);
|
||||||
|
|
||||||
//===== XComponent ==============================================
|
|
||||||
|
|
||||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
//===== XAccessible =======================================================
|
//===== XAccessible =======================================================
|
||||||
|
|
||||||
virtual ::com::sun::star::uno::Reference<
|
virtual ::com::sun::star::uno::Reference<
|
||||||
|
@@ -52,7 +52,7 @@ using namespace ::com::sun::star::drawing::framework;
|
|||||||
namespace sdext { namespace presenter {
|
namespace sdext { namespace presenter {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper5 <
|
typedef ::cppu::WeakComponentImplHelper5 <
|
||||||
css::accessibility::XAccessible,
|
css::accessibility::XAccessible,
|
||||||
css::accessibility::XAccessibleContext,
|
css::accessibility::XAccessibleContext,
|
||||||
css::accessibility::XAccessibleComponent,
|
css::accessibility::XAccessibleComponent,
|
||||||
@@ -94,15 +94,6 @@ public:
|
|||||||
|
|
||||||
void UpdateStateSet();
|
void UpdateStateSet();
|
||||||
|
|
||||||
//----- XComponent ---------------------------------------------------
|
|
||||||
|
|
||||||
virtual void SAL_CALL dispose()throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const css::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const css::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
//----- XAccessible -------------------------------------------------------
|
//----- XAccessible -------------------------------------------------------
|
||||||
|
|
||||||
virtual css::uno::Reference<css::accessibility::XAccessibleContext> SAL_CALL
|
virtual css::uno::Reference<css::accessibility::XAccessibleContext> SAL_CALL
|
||||||
|
@@ -38,7 +38,7 @@
|
|||||||
class ThumbnailView;
|
class ThumbnailView;
|
||||||
class ThumbnailViewItem;
|
class ThumbnailViewItem;
|
||||||
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper6<
|
typedef ::cppu::WeakComponentImplHelper6<
|
||||||
::com::sun::star::accessibility::XAccessible,
|
::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
@@ -76,14 +76,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
void LoseFocus();
|
void LoseFocus();
|
||||||
|
|
||||||
// XComponent
|
|
||||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
// XAccessible
|
// XAccessible
|
||||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
||||||
|
|
||||||
|
@@ -105,7 +105,7 @@ public:
|
|||||||
// - ToolbarMenuAcc -
|
// - ToolbarMenuAcc -
|
||||||
|
|
||||||
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper5<
|
typedef ::cppu::WeakComponentImplHelper5<
|
||||||
::com::sun::star::accessibility::XAccessible,
|
::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
@@ -127,14 +127,6 @@ public:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// XComponent
|
|
||||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
// XAccessible
|
// XAccessible
|
||||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
||||||
|
|
||||||
@@ -201,7 +193,7 @@ private:
|
|||||||
// - ToolbarMenuEntryAcc -
|
// - ToolbarMenuEntryAcc -
|
||||||
|
|
||||||
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper4< ::com::sun::star::accessibility::XAccessible,
|
typedef ::cppu::WeakComponentImplHelper4< ::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
::com::sun::star::accessibility::XAccessibleComponent > ToolbarMenuEntryAccBase;
|
::com::sun::star::accessibility::XAccessibleComponent > ToolbarMenuEntryAccBase;
|
||||||
@@ -215,13 +207,6 @@ public:
|
|||||||
|
|
||||||
bool HasAccessibleListeners() const { return( mxEventListeners.size() > 0 ); }
|
bool HasAccessibleListeners() const { return( mxEventListeners.size() > 0 ); }
|
||||||
|
|
||||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
// XAccessible
|
// XAccessible
|
||||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
||||||
|
|
||||||
|
@@ -68,7 +68,7 @@ struct ValueSetItem
|
|||||||
GetAccessible( bool bIsTransientChildrenDisabled );
|
GetAccessible( bool bIsTransientChildrenDisabled );
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef ::cppu::PartialWeakComponentImplHelper6<
|
typedef ::cppu::WeakComponentImplHelper6<
|
||||||
::com::sun::star::accessibility::XAccessible,
|
::com::sun::star::accessibility::XAccessible,
|
||||||
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
::com::sun::star::accessibility::XAccessibleEventBroadcaster,
|
||||||
::com::sun::star::accessibility::XAccessibleContext,
|
::com::sun::star::accessibility::XAccessibleContext,
|
||||||
@@ -103,14 +103,6 @@ public:
|
|||||||
*/
|
*/
|
||||||
void LoseFocus();
|
void LoseFocus();
|
||||||
|
|
||||||
// XComponent
|
|
||||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::dispose(); }
|
|
||||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
|
||||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
|
||||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
|
||||||
|
|
||||||
// XAccessible
|
// XAccessible
|
||||||
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user