From 8065e33626b8b9cf02caaa12b345b538535a8acf Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 9 Jan 2017 16:05:35 +0000 Subject: move the ImplRegisterObj outside ImplSetGraphicManager and rename it Change-Id: I1eded3ee41787b9a3339e01cf6e1157724bba1a6 --- svtools/source/graphic/grfmgr.cxx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'svtools') diff --git a/svtools/source/graphic/grfmgr.cxx b/svtools/source/graphic/grfmgr.cxx index 9c5b89f15595..003063d7c0a6 100644 --- a/svtools/source/graphic/grfmgr.cxx +++ b/svtools/source/graphic/grfmgr.cxx @@ -77,7 +77,8 @@ GraphicObject::GraphicObject() : { ImplConstruct(); ImplAssignGraphicData(); - ImplSetGraphicManager(); + ImplEnsureGraphicManager(); + mpMgr->ImplRegisterObj(*this, maGraphic, nullptr, nullptr); } GraphicObject::GraphicObject( const Graphic& rGraphic ) : @@ -87,7 +88,8 @@ GraphicObject::GraphicObject( const Graphic& rGraphic ) : { ImplConstruct(); ImplAssignGraphicData(); - ImplSetGraphicManager(); + ImplEnsureGraphicManager(); + mpMgr->ImplRegisterObj(*this, maGraphic, nullptr, nullptr); } GraphicObject::GraphicObject( const GraphicObject& rGraphicObj ) : @@ -98,7 +100,8 @@ GraphicObject::GraphicObject( const GraphicObject& rGraphicObj ) : { ImplConstruct(); ImplAssignGraphicData(); - ImplSetGraphicManager(nullptr, &rGraphicObj); + ImplEnsureGraphicManager(); + mpMgr->ImplRegisterObj(*this, maGraphic, nullptr, &rGraphicObj); if( rGraphicObj.HasUserData() && rGraphicObj.IsSwappedOut() ) SetSwapState(); } @@ -112,7 +115,8 @@ GraphicObject::GraphicObject( const OString& rUniqueID ) : // assign default properties ImplAssignGraphicData(); - ImplSetGraphicManager(&rUniqueID); + ImplEnsureGraphicManager(); + mpMgr->ImplRegisterObj(*this, maGraphic, &rUniqueID, nullptr); // update properties ImplAssignGraphicData(); @@ -161,7 +165,7 @@ void GraphicObject::ImplAssignGraphicData() ImplAfterDataChange(); } -void GraphicObject::ImplSetGraphicManager(const OString* pID, const GraphicObject* pCopyObj) +void GraphicObject::ImplEnsureGraphicManager() { if (!mpGlobalMgr) { @@ -187,7 +191,6 @@ void GraphicObject::ImplSetGraphicManager(const OString* pID, const GraphicObjec } mpMgr = mpGlobalMgr; - mpMgr->ImplRegisterObj( *this, maGraphic, pID, pCopyObj ); } void GraphicObject::ImplAutoSwapIn() -- cgit