diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-05 09:08:07 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-05 09:08:37 +0200 |
commit | 676a7e996aa664d3478c2397586564b22706ef63 (patch) | |
tree | ca309b54dd136e3b90c0cce4cb4053449f9f1dac /svx/source/engine3d/view3d.cxx | |
parent | 374d53f5ee0204b17b76a1f447b041ce5479971d (diff) |
svx: prefix remaining members of SdrDragView
Change-Id: Iac5d80ef4e433c95277237692bda02fa75a24c61
Diffstat (limited to 'svx/source/engine3d/view3d.cxx')
-rw-r--r-- | svx/source/engine3d/view3d.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/engine3d/view3d.cxx b/svx/source/engine3d/view3d.cxx index 8551300b703a..18ff215c16cc 100644 --- a/svx/source/engine3d/view3d.cxx +++ b/svx/source/engine3d/view3d.cxx @@ -1229,13 +1229,13 @@ bool E3dView::BegDragObj(const Point& rPnt, OutputDevice* pOut, } if( bThereAre3DObjects ) { - eDragHdl = ( pHdl == NULL ? HDL_MOVE : pHdl->GetKind() ); + meDragHdl = ( pHdl == NULL ? HDL_MOVE : pHdl->GetKind() ); switch ( eDragMode ) { case SDRDRAG_ROTATE: case SDRDRAG_SHEAR: { - switch ( eDragHdl ) + switch ( meDragHdl ) { case HDL_LEFT: case HDL_RIGHT: @@ -1272,7 +1272,7 @@ bool E3dView::BegDragObj(const Point& rPnt, OutputDevice* pOut, { if(!bThereAreRootScenes) { - pForcedMeth = new E3dDragMove(*this, GetMarkedObjectList(), eDragHdl, eConstraint, IsSolidDragging()); + pForcedMeth = new E3dDragMove(*this, GetMarkedObjectList(), meDragHdl, eConstraint, IsSolidDragging()); } } break; |