diff options
author | Oliver Specht <os@openoffice.org> | 2000-09-22 08:34:03 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2000-09-22 08:34:03 +0000 |
commit | 2ce227610eab9f2c425ba5c0cac9bf073c576d80 (patch) | |
tree | a17be35ae93d86b884ab153be7058ce85a3b100e /sw/inc/unotbl.hxx | |
parent | ca8942b781198476aa65a81b7a321e6e09a8b65c (diff) |
#78871# simple handling of XChartDataChangeEventListener implemented
Diffstat (limited to 'sw/inc/unotbl.hxx')
-rw-r--r-- | sw/inc/unotbl.hxx | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/sw/inc/unotbl.hxx b/sw/inc/unotbl.hxx index 01cb5461b56f..c77311b39d9a 100644 --- a/sw/inc/unotbl.hxx +++ b/sw/inc/unotbl.hxx @@ -2,9 +2,9 @@ * * $RCSfile: unotbl.hxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:14:29 $ + * last change: $Author: os $ $Date: 2000-09-22 09:34:03 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -99,7 +99,19 @@ class SwTableCursor; class SwTableBoxFmt; class SwTableLine; class SwTableCursor; +/* -----------------------------22.09.00 11:10-------------------------------- + ---------------------------------------------------------------------------*/ +class SwChartEventListenerContainer : public SwEventListenerContainer +{ + public: + SwChartEventListenerContainer( ::com::sun::star::uno::XInterface* pxParent) : + SwEventListenerContainer(pxParent){} + void ChartDataChanged(); +}; +/* --------------------------------------------------------------------------- + + ---------------------------------------------------------------------------*/ typedef cppu::WeakImplHelper4 < @@ -298,7 +310,8 @@ class SwXTextTable : public cppu::WeakImplHelper9 >, public SwClient { - SwEventListenerContainer aLstnrCntnr; + SwEventListenerContainer aLstnrCntnr; + SwChartEventListenerContainer aChartLstnrCntnr; SfxItemPropertySet aPropSet; const SfxItemPropertyMap* _pMap; SwSortOptions* pLastSortOptions; @@ -418,7 +431,8 @@ class SwXCellRange : public cppu::WeakImplHelper6 >, public SwClient { - SwDepend aCursorDepend; //the cursor is removed after the doc has been removed + SwDepend aCursorDepend; //the cursor is removed after the doc has been removed + SwChartEventListenerContainer aChartLstnrCntnr; SwRangeDescriptor aRgDesc; SfxItemPropertySet aPropSet; |