summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdobj.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-21 22:00:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-22 06:37:23 +0000
commitb39dfb4703ba5225da3cdc2911461e4cae83aa8e (patch)
treed577544114045c4f28c96e136f67234971a4bf23 /svx/source/svdraw/svdobj.cxx
parent6f9cdf0814c8364ee6000075f8c04bc7fa2e51f8 (diff)
re-organise SdrObject class definition
it had public/private/protected sections all over the place. Also use loplugin can-be-private analysis to make some fields and methods private. Change-Id: Ibb3c8d1f58753ff5599d94106f0991af152217d2 Reviewed-on: https://gerrit.libreoffice.org/31055 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/svdraw/svdobj.cxx')
-rw-r--r--svx/source/svdraw/svdobj.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx
index 7d5a15d1110d..de9124fa705f 100644
--- a/svx/source/svdraw/svdobj.cxx
+++ b/svx/source/svdraw/svdobj.cxx
@@ -290,18 +290,18 @@ void SdrObject::SetBoundRectDirty()
SdrObject::SdrObject() :
- mpImpl(new Impl),
- mpProperties(nullptr)
- ,mpViewContact(nullptr)
- ,pObjList(nullptr)
- ,pPage(nullptr)
+ pPage(nullptr)
,pModel(nullptr)
,pUserCall(nullptr)
,pPlusData(nullptr)
+ ,mpImpl(new Impl)
+ ,pObjList(nullptr)
,nOrdNum(0)
,pGrabBagItem(nullptr)
,mnNavigationPosition(SAL_MAX_UINT32)
,mnLayerID(0)
+ ,mpProperties(nullptr)
+ ,mpViewContact(nullptr)
,mbDelayBroadcastObjectChange(false)
,mbBroadcastObjectChangePending(false)
,mpSvxShape( nullptr )