summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-09 16:05:35 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-10 12:18:56 +0000
commit8065e33626b8b9cf02caaa12b345b538535a8acf (patch)
tree3cd649ceb38505470565c6101ecac9036432b52e /svtools
parentf0ab4138ca30690c4779c6a440826de3bd6fc8e7 (diff)
move the ImplRegisterObj outside ImplSetGraphicManager and rename it
Change-Id: I1eded3ee41787b9a3339e01cf6e1157724bba1a6
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/graphic/grfmgr.cxx15
1 files changed, 9 insertions, 6 deletions
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()