summaryrefslogtreecommitdiff
path: root/include/svx/svdocirc.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-04 13:12:11 +0200
committerNoel Grandin <noel@peralex.com>2014-11-04 14:45:54 +0200
commit05a5d0430ec50a0348006d1a7039f82229d5f497 (patch)
treec3e0cc91e5c60c87919a2c26a40f086969389b71 /include/svx/svdocirc.hxx
parent0516d123f53917d1833c7e8a8c528a619c71a0af (diff)
rename nStartWink->nStartAngle
Change-Id: I2bc3e0eed4846fca066bfacce4165f392b398666
Diffstat (limited to 'include/svx/svdocirc.hxx')
-rw-r--r--include/svx/svdocirc.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdocirc.hxx b/include/svx/svdocirc.hxx
index 40386fdf989d..a3a821a33c6d 100644
--- a/include/svx/svdocirc.hxx
+++ b/include/svx/svdocirc.hxx
@@ -33,7 +33,7 @@ namespace sdr { namespace properties {
class SdrCircObjGeoData : public SdrTextObjGeoData
{
public:
- long nStartWink;
+ long nStartAngle;
long nEndWink;
};
@@ -53,7 +53,7 @@ protected:
virtual sdr::properties::BaseProperties* CreateObjectSpecificProperties() SAL_OVERRIDE;
SdrObjKind meCircleKind;
- long nStartWink;
+ long nStartAngle;
long nEndWink;
private:
SVX_DLLPRIVATE basegfx::B2DPolygon ImpCalcXPolyCirc(const SdrObjKind eKind, const Rectangle& rRect1, long nStart, long nEnd) const;
@@ -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 nStartWink; }
+ long GetStartWink() const { return nStartAngle; }
long GetEndWink() const { return nEndWink; }
};