Kaydet (Commit) c30e0fe5 authored tarafından Caolán McNamara's avatar Caolán McNamara

add in pre/post win to build

üst 694aee0c
...@@ -49,7 +49,7 @@ class SlideSorter; ...@@ -49,7 +49,7 @@ class SlideSorter;
namespace accessibility { namespace accessibility {
typedef ::cppu::WeakComponentImplHelper5< typedef ::cppu::PartialWeakComponentImplHelper5<
::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,
...@@ -95,7 +95,14 @@ public: ...@@ -95,7 +95,14 @@ public:
virtual void SAL_CALL disposing (void); virtual void SAL_CALL disposing (void);
//===== XComponent ==============================================
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException)
{ 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)
{ 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)
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
//===== XAccessible ======================================================= //===== XAccessible =======================================================
...@@ -118,9 +125,6 @@ public: ...@@ -118,9 +125,6 @@ public:
::com::sun::star::accessibility::XAccessibleEventListener >& rxListener ) ::com::sun::star::accessibility::XAccessibleEventListener >& rxListener )
throw (::com::sun::star::uno::RuntimeException); throw (::com::sun::star::uno::RuntimeException);
using cppu::WeakComponentImplHelperBase::addEventListener;
using cppu::WeakComponentImplHelperBase::removeEventListener;
//===== XAccessibleContext ============================================== //===== XAccessibleContext ==============================================
virtual sal_Int32 SAL_CALL virtual sal_Int32 SAL_CALL
......
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