summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-07-10 13:49:37 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-07-10 14:13:58 -0400
commitcf470718ca5e906ae4c6da3fad3698872f97ee6f (patch)
tree8098968ba5d2a73ea891a884ab24fdd378b89bec /svx
parenteda334eb1da4ddfe67f1d88d0ba85f86cfbddd87 (diff)
pGraphicObject -> mpGraphicObject
Change-Id: I8b396ff1018fb54eecd44624a11bc2e405bb7f84
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdoole2.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/svx/source/svdraw/svdoole2.cxx b/svx/source/svdraw/svdoole2.cxx
index 0ae1e16ddbf7..69f327f6e750 100644
--- a/svx/source/svdraw/svdoole2.cxx
+++ b/svx/source/svdraw/svdoole2.cxx
@@ -672,7 +672,7 @@ public:
Graphic* mpGraphic;
// TODO/LATER: do we really need this pointer?
- GraphicObject* pGraphicObject;
+ GraphicObject* mpGraphicObject;
OUString aPersistName; // name of object in persist
SdrLightEmbeddedClient_Impl* pLightClient; // must be registered as client only using AddOwnLightClient() call
@@ -685,7 +685,7 @@ public:
SdrOle2ObjImpl() :
mpGraphic(NULL),
- pGraphicObject(NULL),
+ mpGraphicObject(NULL),
pLightClient (NULL),
mbLoadingOLEObjectFailed(false),
mbConnected(false),
@@ -697,7 +697,7 @@ public:
SdrOle2ObjImpl( const svt::EmbeddedObjectRef& rObjRef ) :
mxObjRef(rObjRef),
mpGraphic(NULL),
- pGraphicObject(NULL),
+ mpGraphicObject(NULL),
pLightClient (NULL),
mbLoadingOLEObjectFailed(false),
mbConnected(false),
@@ -709,7 +709,7 @@ public:
~SdrOle2ObjImpl()
{
delete mpGraphic;
- delete pGraphicObject;
+ delete mpGraphicObject;
}
};
@@ -855,14 +855,14 @@ void SdrOle2Obj::SetGraphic_Impl(const Graphic* pGrf)
{
delete mpImpl->mpGraphic;
mpImpl->mpGraphic = NULL;
- delete mpImpl->pGraphicObject;
- mpImpl->pGraphicObject = NULL;
+ delete mpImpl->mpGraphicObject;
+ mpImpl->mpGraphicObject = NULL;
}
if (pGrf)
{
mpImpl->mpGraphic = new Graphic(*pGrf);
- mpImpl->pGraphicObject = new GraphicObject(*mpImpl->mpGraphic);
+ mpImpl->mpGraphicObject = new GraphicObject(*mpImpl->mpGraphic);
}
SetChanged();
@@ -1674,11 +1674,11 @@ SdrOle2Obj& SdrOle2Obj::assignFrom(
if (mpImpl->mpGraphic)
{
delete mpImpl->mpGraphic;
- delete mpImpl->pGraphicObject;
+ delete mpImpl->mpGraphicObject;
}
mpImpl->mpGraphic = new Graphic(*rOle2Obj.mpImpl->mpGraphic);
- mpImpl->pGraphicObject = new GraphicObject(*mpImpl->mpGraphic);
+ mpImpl->mpGraphicObject = new GraphicObject(*mpImpl->mpGraphic);
}
if( pModel && rObj.GetModel() && !IsEmptyPresObj() )