diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-02-03 00:05:59 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-02-03 02:14:20 +0100 |
commit | 080dc03a1ee42ca299a7fe10c1887c819ad8926b (patch) | |
tree | da7173a5cfad940d37461a513830f19b4973c5f8 /sw/inc | |
parent | 54c08983cb615fe0474238aacd18284acbc5ec43 (diff) |
sw: replace SwEventListenerContainer in SwXTextTable
OMultiTypeInterfaceContainerHelper appears to be a bit verbose to use...
it needs a notifyEach method at least. But hopefully it will at least
use less memory in case there are no listeners.
Change-Id: I9f72ee8e4ad61f657f565b99cc37126d78b0c5cc
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/unotbl.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/unotbl.hxx b/sw/inc/unotbl.hxx index 88f4bf351fe6..9ba64146e357 100644 --- a/sw/inc/unotbl.hxx +++ b/sw/inc/unotbl.hxx @@ -44,7 +44,6 @@ #include <calbck.hxx> #include <TextCursorHelper.hxx> -#include <unoevtlstnr.hxx> #include <unotext.hxx> @@ -289,9 +288,10 @@ class SwXTextTable : public cppu::WeakImplHelper10 >, public SwClient { - ::osl::Mutex m_Mutex; - ::cppu::OInterfaceContainerHelper m_ChartListeners; - SwEventListenerContainer aLstnrCntnr; +private: + class Impl; + ::sw::UnoImplPtr<Impl> m_pImpl; + const SfxItemPropertySet* m_pPropSet; // Descriptor-interface |