diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-12-02 18:53:04 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-12-03 11:41:32 +0000 |
commit | 0d2e083fed20e4f0c263e2373aeee83bc7cee9cd (patch) | |
tree | 7b0225da3fb2c94703e9e498b3882e3b93bd290f /starmath/inc/node.hxx | |
parent | 1b206f37d0f9b61ebc908f58b33515c055ff1a75 (diff) |
starmath: Prefix members of SmPolyLineNode etc.
Change-Id: I6fa81689e14e605cd7449526e44245d4fdebb298
Reviewed-on: https://gerrit.libreoffice.org/31536
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r-- | starmath/inc/node.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx index e3067b7d9203..5215e711998c 100644 --- a/starmath/inc/node.hxx +++ b/starmath/inc/node.hxx @@ -328,7 +328,7 @@ public: */ class SmRectangleNode : public SmGraphicNode { - Size aToSize; + Size maToSize; public: explicit SmRectangleNode(const SmToken &rNodeToken) @@ -351,15 +351,15 @@ public: */ class SmPolyLineNode : public SmGraphicNode { - tools::Polygon aPoly; - Size aToSize; - long nWidth; + tools::Polygon maPoly; + Size maToSize; + long mnWidth; public: explicit SmPolyLineNode(const SmToken &rNodeToken); - long GetWidth() const { return nWidth; } - tools::Polygon &GetPolygon() { return aPoly; } + long GetWidth() const { return mnWidth; } + tools::Polygon &GetPolygon() { return maPoly; } virtual void AdaptToX(OutputDevice &rDev, sal_uLong nWidth) override; virtual void AdaptToY(OutputDevice &rDev, sal_uLong nHeight) override; |