summaryrefslogtreecommitdiff
path: root/svx/source/svdraw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-04 12:55:41 +0200
committerNoel Grandin <noel@peralex.com>2014-11-04 14:45:53 +0200
commit37be521dbd8b15ce363d07b903efd4267a3de8be (patch)
tree416a89d64067b7c909eb35c95c1a2f2ae8fd789b /svx/source/svdraw
parent1b58c8434f42a92cfd63f1cc1b9e7e0e4826c86c (diff)
rename SetDrehWink -> setRotationAngle
Change-Id: Iae65d415b20d371250c3be077e0fa3fd73c42e97
Diffstat (limited to 'svx/source/svdraw')
-rw-r--r--svx/source/svdraw/svdhdl.cxx2
-rw-r--r--svx/source/svdraw/svdocirc.cxx2
-rw-r--r--svx/source/svdraw/svdomeas.cxx2
-rw-r--r--svx/source/svdraw/svdorect.cxx4
-rw-r--r--svx/source/svdraw/svdotxdr.cxx2
5 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/svdraw/svdhdl.cxx b/svx/source/svdraw/svdhdl.cxx
index caa76d8f7340..a201f03a8168 100644
--- a/svx/source/svdraw/svdhdl.cxx
+++ b/svx/source/svdraw/svdhdl.cxx
@@ -333,7 +333,7 @@ void SdrHdl::SetMoveOutside( bool bMoveOutside )
}
}
-void SdrHdl::SetDrehWink(long n)
+void SdrHdl::SetRotationAngle(long n)
{
if(nRotationAngle != n)
{
diff --git a/svx/source/svdraw/svdocirc.cxx b/svx/source/svdraw/svdocirc.cxx
index d420c00bfe6b..979979ecc055 100644
--- a/svx/source/svdraw/svdocirc.cxx
+++ b/svx/source/svdraw/svdocirc.cxx
@@ -463,7 +463,7 @@ SdrHdl* SdrCircObj::GetHdl(sal_uInt32 nHdlNum) const
pH = new SdrHdl(aPnt,eLocalKind);
pH->SetPointNum(nPNum);
pH->SetObj((SdrObject*)this);
- pH->SetDrehWink(aGeo.nRotationAngle);
+ pH->SetRotationAngle(aGeo.nRotationAngle);
}
return pH;
diff --git a/svx/source/svdraw/svdomeas.cxx b/svx/source/svdraw/svdomeas.cxx
index 908b59540db6..868386006a22 100644
--- a/svx/source/svdraw/svdomeas.cxx
+++ b/svx/source/svdraw/svdomeas.cxx
@@ -795,7 +795,7 @@ SdrHdl* SdrMeasureObj::GetHdl(sal_uInt32 nHdlNum) const
} // switch
SdrHdl* pHdl=new ImpMeasureHdl(aPt,HDL_USER);
pHdl->SetObjHdlNum(nHdlNum);
- pHdl->SetDrehWink(aMPol.nLineWink);
+ pHdl->SetRotationAngle(aMPol.nLineWink);
return pHdl;
}
diff --git a/svx/source/svdraw/svdorect.cxx b/svx/source/svdraw/svdorect.cxx
index 01634d84d9d4..eb34b0d979c9 100644
--- a/svx/source/svdraw/svdorect.cxx
+++ b/svx/source/svdraw/svdorect.cxx
@@ -334,7 +334,7 @@ SdrHdl* SdrRectObj::GetHdl(sal_uInt32 nHdlNum) const
// for a textbox is displayed at correct position
pH = new ImpTextframeHdl(aRect + GetGridOffset() );
pH->SetObj((SdrObject*)this);
- pH->SetDrehWink(aGeo.nRotationAngle);
+ pH->SetRotationAngle(aGeo.nRotationAngle);
break;
}
case 1:
@@ -372,7 +372,7 @@ SdrHdl* SdrRectObj::GetHdl(sal_uInt32 nHdlNum) const
pH = new SdrHdl(aPnt,eKind);
pH->SetObj((SdrObject*)this);
- pH->SetDrehWink(aGeo.nRotationAngle);
+ pH->SetRotationAngle(aGeo.nRotationAngle);
}
return pH;
diff --git a/svx/source/svdraw/svdotxdr.cxx b/svx/source/svdraw/svdotxdr.cxx
index 1ed67ac0373c..351b7733f989 100644
--- a/svx/source/svdraw/svdotxdr.cxx
+++ b/svx/source/svdraw/svdotxdr.cxx
@@ -57,7 +57,7 @@ SdrHdl* SdrTextObj::GetHdl(sal_uInt32 nHdlNum) const
if (eKind!=HDL_MOVE) {
pH=new SdrHdl(aPnt,eKind);
pH->SetObj((SdrObject*)this);
- pH->SetDrehWink(aGeo.nRotationAngle);
+ pH->SetRotationAngle(aGeo.nRotationAngle);
}
return pH;
}