summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/atrfrm.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-11-02 09:05:43 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-11-02 09:11:26 +0100
commite9c862e9f9ba3cc2eb09c146c8dfd2aaa5cf57bc (patch)
tree88aa527df89087a179d18d9efea0be54e9a8af76 /sw/source/core/layout/atrfrm.cxx
parentbd63b48ab027d63d889f2a0136589a6bfd4158eb (diff)
sw: prefix members of SwDrawFrameFormat
Change-Id: I0d00ca7727e0756030830cd732655b2a22b900d6
Diffstat (limited to 'sw/source/core/layout/atrfrm.cxx')
-rw-r--r--sw/source/core/layout/atrfrm.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index f985b62a7a48..fea1265659ae 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -3358,18 +3358,18 @@ OUString SwDrawFrameFormat::GetDescription() const
if (pSdrObj)
{
- if (pSdrObj != pSdrObjCached)
+ if (pSdrObj != m_pSdrObjectCached)
{
SdrObject * pSdrObjCopy = pSdrObj->Clone();
SdrUndoNewObj * pSdrUndo = new SdrUndoNewObj(*pSdrObjCopy);
- sSdrObjCachedComment = pSdrUndo->GetComment();
+ m_sSdrObjectCachedComment = pSdrUndo->GetComment();
delete pSdrUndo;
- pSdrObjCached = pSdrObj;
+ m_pSdrObjectCached = pSdrObj;
}
- aResult = sSdrObjCachedComment;
+ aResult = m_sSdrObjectCachedComment;
}
else
aResult = SW_RESSTR(STR_GRAPHIC);