From 9eac8b2d2d5b77e1aa537a8e3756ffbbb10d7e0e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 25 Nov 2011 20:16:36 +0000 Subject: Resolves: fdo#39950 fix dnd crash from default assignment operators --- reportdesign/inc/RptObject.hxx | 4 +++ reportdesign/source/core/sdr/RptObject.cxx | 58 +++++++++++++++++++----------- 2 files changed, 41 insertions(+), 21 deletions(-) (limited to 'reportdesign') diff --git a/reportdesign/inc/RptObject.hxx b/reportdesign/inc/RptObject.hxx index 056a06c4a522..4084a4770e32 100644 --- a/reportdesign/inc/RptObject.hxx +++ b/reportdesign/inc/RptObject.hxx @@ -224,6 +224,8 @@ public: virtual OOle2Obj* Clone() const; virtual void initializeOle(); + OOle2Obj& operator=(const OOle2Obj& rObj); + void initializeChart( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel>& _xModel); }; @@ -275,6 +277,8 @@ public: virtual sal_uInt32 GetObjInventor() const; virtual OUnoObject* Clone() const; + OUnoObject& operator=(const OUnoObject& rObj); + private: void impl_setReportComponent_nothrow(); void impl_initializeModel_nothrow(); diff --git a/reportdesign/source/core/sdr/RptObject.cxx b/reportdesign/source/core/sdr/RptObject.cxx index 09bf34044676..b50945a6ea1c 100644 --- a/reportdesign/source/core/sdr/RptObject.cxx +++ b/reportdesign/source/core/sdr/RptObject.cxx @@ -941,18 +941,24 @@ uno::Reference< uno::XInterface > OUnoObject::getUnoShape() { return OObjectBase::getUnoShapeOf( *this ); } -// ----------------------------------------------------------------------------- + +OUnoObject& OUnoObject::operator=(const OUnoObject& rObj) +{ + if( this == &rObj ) + return *this; + SdrUnoObj::operator=(rObj); + + Reference xSource(const_cast(rObj).getUnoShape(), uno::UNO_QUERY); + Reference xDest(getUnoShape(), uno::UNO_QUERY); + if ( xSource.is() && xDest.is() ) + comphelper::copyProperties(xSource.get(), xDest.get()); + + return *this; +} + OUnoObject* OUnoObject::Clone() const { - OUnoObject* pClone = CloneHelper< OUnoObject >(); - if ( pClone ) - { - Reference xSource(const_cast(this)->getUnoShape(),uno::UNO_QUERY); - Reference xDest(pClone->getUnoShape(),uno::UNO_QUERY); - if ( xSource.is() && xDest.is() ) - comphelper::copyProperties(xSource.get(),xDest.get()); - } - return pClone; + return CloneHelper< OUnoObject >(); } //---------------------------------------------------------------------------- // OOle2Obj @@ -1154,22 +1160,32 @@ uno::Reference< chart2::data::XDatabaseDataProvider > lcl_getDataProvider(const } return xSource; } -// ----------------------------------------------------------------------------- -// Clone() soll eine komplette Kopie des Objektes erzeugen. -OOle2Obj* OOle2Obj::Clone() const + +OOle2Obj& OOle2Obj::operator=(const OOle2Obj& rObj) { - OOle2Obj* pObj = CloneHelper< OOle2Obj >(); - OReportModel* pRptModel = static_cast(GetModel()); - svt::EmbeddedObjectRef::TryRunningState( pObj->GetObjRef() ); - pObj->impl_createDataProvider_nothrow(pRptModel->getReportDefinition().get()); + if( this == &rObj ) + return *this; + SdrOle2Obj::operator=(rObj); - uno::Reference< chart2::data::XDatabaseDataProvider > xSource( lcl_getDataProvider(GetObjRef()) ); - uno::Reference< chart2::data::XDatabaseDataProvider > xDest( lcl_getDataProvider(pObj->GetObjRef()) ); + OReportModel* pRptModel = static_cast(rObj.GetModel()); + svt::EmbeddedObjectRef::TryRunningState( GetObjRef() ); + impl_createDataProvider_nothrow(pRptModel->getReportDefinition().get()); + + uno::Reference< chart2::data::XDatabaseDataProvider > xSource( lcl_getDataProvider(rObj.GetObjRef()) ); + uno::Reference< chart2::data::XDatabaseDataProvider > xDest( lcl_getDataProvider(GetObjRef()) ); if ( xSource.is() && xDest.is() ) comphelper::copyProperties(xSource.get(),xDest.get()); - pObj->initializeChart(pRptModel->getReportDefinition().get()); - return pObj; + initializeChart(pRptModel->getReportDefinition().get()); + + return *this; +} + +// ----------------------------------------------------------------------------- +// Clone() soll eine komplette Kopie des Objektes erzeugen. +OOle2Obj* OOle2Obj::Clone() const +{ + return CloneHelper< OOle2Obj >(); } // ----------------------------------------------------------------------------- void OOle2Obj::impl_createDataProvider_nothrow(const uno::Reference< frame::XModel>& _xModel) -- cgit