summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-09-30 06:36:06 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-09-30 06:36:06 +0000
commitb1b9c4055b8714070f979d011d9ca4d35688387b (patch)
tree8056444ef03ae9fc597f096e5fc60532a9bc4e44 /chart2
parent141c7165253f938e26d3a4695a7de6aa773f0d1e (diff)
CWS-TOOLING: integrate CWS sfxnotifyremoval
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/drawinglayer/DrawViewWrapper.cxx4
-rw-r--r--chart2/source/controller/inc/DrawViewWrapper.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx b/chart2/source/controller/drawinglayer/DrawViewWrapper.cxx
index 2e9d5b528..7b12ac9ac 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 eb8a51d0d..d8370ef4b 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 );