diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-09-30 06:36:06 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-09-30 06:36:06 +0000 |
commit | 5c0ecf9b570c595d6c19b86a279d9d8c45afbd20 (patch) | |
tree | 2684aeb40f97db67af1f74230147c7b48fda5305 /chart2/source | |
parent | 716636d558e9cc9b910da6d127314d2b20cdf0b6 (diff) |
CWS-TOOLING: integrate CWS sfxnotifyremoval
Diffstat (limited to 'chart2/source')
-rw-r--r-- | chart2/source/controller/drawinglayer/DrawViewWrapper.cxx | 4 | ||||
-rw-r--r-- | chart2/source/controller/inc/DrawViewWrapper.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx index 14b2f1065c95..59f06c66c6e4 100644 --- a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx +++ b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx @@ -340,7 +340,7 @@ bool DrawViewWrapper::IsObjectHit( SdrObject* pObj, const Point& rPnt ) const return false; } -void DrawViewWrapper::SFX_NOTIFY(SfxBroadcaster& rBC, const TypeId& rBCType, const SfxHint& rHint, const TypeId& rHintType) +void DrawViewWrapper::Notify(SfxBroadcaster& rBC, const SfxHint& rHint) { //prevent wrong reselection of objects SdrModel* pSdrModel( this->GetModel() ); @@ -357,7 +357,7 @@ void DrawViewWrapper::SFX_NOTIFY(SfxBroadcaster& rBC, const TypeId& rBCType, con return; } - E3dView::SFX_NOTIFY(rBC, rBCType, rHint, rHintType); + E3dView::Notify(rBC, rHint); if( pSdrHint != 0 ) { diff --git a/chart2/source/controller/inc/DrawViewWrapper.hxx b/chart2/source/controller/inc/DrawViewWrapper.hxx index bf023dbf228a..3709145db281 100644 --- a/chart2/source/controller/inc/DrawViewWrapper.hxx +++ b/chart2/source/controller/inc/DrawViewWrapper.hxx @@ -93,7 +93,7 @@ public: SdrObject* getNamedSdrObject( const rtl::OUString& rName ) const; bool IsObjectHit( SdrObject* pObj, const Point& rPnt ) const; - virtual void SFX_NOTIFY(SfxBroadcaster& rBC, const TypeId& rBCType, const SfxHint& rHint, const TypeId& rHintType); + virtual void Notify(SfxBroadcaster& rBC, const SfxHint& rHint); static SdrObject* getSdrObject( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >& xShape ); |