diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-04 13:15:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-11-04 14:45:55 +0200 |
commit | a492d5fe5b78145cec3b64e4d57f4797f81aaa2c (patch) | |
tree | bbbfcd68ddd9ee808700512303d5d3dd457ae182 | |
parent | ffece505e7c62d9de62b9529e484cf8f2a74ccc3 (diff) |
rename GetStartWink->GetStartAngle
Change-Id: I8af435c764dbe020facdd3366a9f00b256b377b2
-rw-r--r-- | include/svx/svdocirc.hxx | 2 | ||||
-rw-r--r-- | svx/source/sdr/properties/circleproperties.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdocirc.hxx b/include/svx/svdocirc.hxx index f4a9271b17c0..8511734ae960 100644 --- a/include/svx/svdocirc.hxx +++ b/include/svx/svdocirc.hxx @@ -122,7 +122,7 @@ protected: virtual void SaveGeoData(SdrObjGeoData& rGeo) const SAL_OVERRIDE; virtual void RestGeoData(const SdrObjGeoData& rGeo) SAL_OVERRIDE; public: - long GetStartWink() const { return nStartAngle; } + long GetStartAngle() const { return nStartAngle; } long GetEndWink() const { return nEndAngle; } }; diff --git a/svx/source/sdr/properties/circleproperties.cxx b/svx/source/sdr/properties/circleproperties.cxx index a2a1bfe4d867..7c6fc6667d85 100644 --- a/svx/source/sdr/properties/circleproperties.cxx +++ b/svx/source/sdr/properties/circleproperties.cxx @@ -122,9 +122,9 @@ namespace sdr mpItemSet->Put(SdrCircKindItem(eKindA)); - if(rObj.GetStartWink()) + if(rObj.GetStartAngle()) { - mpItemSet->Put(makeSdrCircStartAngleItem(rObj.GetStartWink())); + mpItemSet->Put(makeSdrCircStartAngleItem(rObj.GetStartAngle())); } if(rObj.GetEndWink() != 36000) |