summaryrefslogtreecommitdiffstats
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
commit5c0ecf9b570c595d6c19b86a279d9d8c45afbd20 (patch)
tree2684aeb40f97db67af1f74230147c7b48fda5305 /chart2
parentCWS-TOOLING: integrate CWS koheicoderemoval (diff)
downloadcore-5c0ecf9b570c595d6c19b86a279d9d8c45afbd20.tar.gz
core-5c0ecf9b570c595d6c19b86a279d9d8c45afbd20.zip
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 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 );