From 449907b707ebcc45642dd7890f6dfd6923bfc285 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 7 Apr 2016 07:55:54 +0200 Subject: Avoid reserved identifiers Change-Id: Id04cfda67c128f038d608699285b6f5500698e04 --- svx/source/svdraw/svddrgm1.hxx | 6 +++--- svx/source/svdraw/svddrgmt.cxx | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/svx/source/svdraw/svddrgm1.hxx b/svx/source/svdraw/svddrgm1.hxx index 5192ad7ee023..46f3e53020dd 100644 --- a/svx/source/svdraw/svddrgm1.hxx +++ b/svx/source/svdraw/svddrgm1.hxx @@ -164,8 +164,8 @@ private: SdrCrookMode eMode; // helpers for applyCurrentTransformationToPolyPolygon - void _MovAllPoints(basegfx::B2DPolyPolygon& rTarget); - void _MovCrookPoint(Point& rPnt, Point* pC1, Point* pC2); + void MovAllPoints(basegfx::B2DPolyPolygon& rTarget); + void MovCrookPoint(Point& rPnt, Point* pC1, Point* pC2); protected: // needs to add drag geometry to the default @@ -195,7 +195,7 @@ private: bool bContortion; // helper for applyCurrentTransformationToPolyPolygon - void _MovAllPoints(basegfx::B2DPolyPolygon& rTarget); + void MovAllPoints(basegfx::B2DPolyPolygon& rTarget); protected: // needs to add drag geometry to the default diff --git a/svx/source/svdraw/svddrgmt.cxx b/svx/source/svdraw/svddrgmt.cxx index 0ce6a144a2ee..09ca6cba9b1a 100644 --- a/svx/source/svdraw/svddrgmt.cxx +++ b/svx/source/svdraw/svddrgmt.cxx @@ -2945,7 +2945,7 @@ bool SdrDragCrook::BeginSdrDrag() } } -void SdrDragCrook::_MovAllPoints(basegfx::B2DPolyPolygon& rTarget) +void SdrDragCrook::MovAllPoints(basegfx::B2DPolyPolygon& rTarget) { SdrPageView* pPV = getSdrDragView().GetSdrPageView(); @@ -3052,7 +3052,7 @@ void SdrDragCrook::_MovAllPoints(basegfx::B2DPolyPolygon& rTarget) i++; } - _MovCrookPoint(*pPnt,pC1,pC2); + MovCrookPoint(*pPnt,pC1,pC2); } } } @@ -3062,7 +3062,7 @@ void SdrDragCrook::_MovAllPoints(basegfx::B2DPolyPolygon& rTarget) } } -void SdrDragCrook::_MovCrookPoint(Point& rPnt, Point* pC1, Point* pC2) +void SdrDragCrook::MovCrookPoint(Point& rPnt, Point* pC1, Point* pC2) { bool bVert=bVertical; bool bC1=pC1!=nullptr; @@ -3326,7 +3326,7 @@ void SdrDragCrook::applyCurrentTransformationToSdrObject(SdrObject& rTarget) void SdrDragCrook::applyCurrentTransformationToPolyPolygon(basegfx::B2DPolyPolygon& rTarget) { // use helper derived from old stuff - _MovAllPoints(rTarget); + MovAllPoints(rTarget); } bool SdrDragCrook::EndSdrDrag(bool bCopy) @@ -3483,7 +3483,7 @@ bool SdrDragDistort::BeginSdrDrag() } } -void SdrDragDistort::_MovAllPoints(basegfx::B2DPolyPolygon& rTarget) +void SdrDragDistort::MovAllPoints(basegfx::B2DPolyPolygon& rTarget) { if (bContortion) { @@ -3561,7 +3561,7 @@ void SdrDragDistort::applyCurrentTransformationToSdrObject(SdrObject& rTarget) void SdrDragDistort::applyCurrentTransformationToPolyPolygon(basegfx::B2DPolyPolygon& rTarget) { // use helper derived from old stuff - _MovAllPoints(rTarget); + MovAllPoints(rTarget); } -- cgit