summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-07 07:55:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-07 07:57:12 +0200
commit449907b707ebcc45642dd7890f6dfd6923bfc285 (patch)
tree45df6fa8b1a8687b6746df2f3b97b4a77b618dc1
parent9c38c84c4840f5c4129494f713e89a7d82cb79e4 (diff)
Avoid reserved identifiers
Change-Id: Id04cfda67c128f038d608699285b6f5500698e04
-rw-r--r--svx/source/svdraw/svddrgm1.hxx6
-rw-r--r--svx/source/svdraw/svddrgmt.cxx12
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);
}