summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-04 13:16:16 +0200
committerNoel Grandin <noel@peralex.com>2014-11-04 14:45:55 +0200
commit9134ae64717be1b5b43dadca8c6c22d42f05c7e9 (patch)
treea1e96f50fe7f1696df5f59c7d46abcc874114234
parenta492d5fe5b78145cec3b64e4d57f4797f81aaa2c (diff)
rename GetEndWink->GetEndAngle
Change-Id: Ibcdc1d4b9bc19dad48a6e2c8d77ebfac19c1d118
-rw-r--r--include/svx/svdocirc.hxx2
-rw-r--r--svx/source/sdr/properties/circleproperties.cxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdocirc.hxx b/include/svx/svdocirc.hxx
index 8511734ae960..37d9a0c75e1c 100644
--- a/include/svx/svdocirc.hxx
+++ b/include/svx/svdocirc.hxx
@@ -123,7 +123,7 @@ protected:
virtual void RestGeoData(const SdrObjGeoData& rGeo) SAL_OVERRIDE;
public:
long GetStartAngle() const { return nStartAngle; }
- long GetEndWink() const { return nEndAngle; }
+ long GetEndAngle() const { return nEndAngle; }
};
diff --git a/svx/source/sdr/properties/circleproperties.cxx b/svx/source/sdr/properties/circleproperties.cxx
index 7c6fc6667d85..79441e9c6708 100644
--- a/svx/source/sdr/properties/circleproperties.cxx
+++ b/svx/source/sdr/properties/circleproperties.cxx
@@ -127,9 +127,9 @@ namespace sdr
mpItemSet->Put(makeSdrCircStartAngleItem(rObj.GetStartAngle()));
}
- if(rObj.GetEndWink() != 36000)
+ if(rObj.GetEndAngle() != 36000)
{
- mpItemSet->Put(makeSdrCircEndAngleItem(rObj.GetEndWink()));
+ mpItemSet->Put(makeSdrCircEndAngleItem(rObj.GetEndAngle()));
}
}