summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2016-11-24 19:08:26 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2016-11-24 14:30:05 +0000
commit32cbe7125387397bf269fb6ca83c11cf66f9d543 (patch)
tree5bde84c653c93237fcd18a8d3b9d0d82ddea3d34 /starmath/inc/node.hxx
parent9691cea443a74885b3f81c602efdd3345de1e3f9 (diff)
starmath: Prefix members of SmFontNode
Also, make SmFontSize::GetSizeType() return value, not reference. Change-Id: Ifec68cfbdd5f05396fb0d913ddd6888749fdcfbd Reviewed-on: https://gerrit.libreoffice.org/31157 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.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index 29c9ccb5556d..ff842f58820f 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -1062,20 +1062,20 @@ public:
*/
class SmFontNode : public SmStructureNode
{
- FontSizeType nSizeType;
- Fraction aFontSize;
+ FontSizeType meSizeType;
+ Fraction maFontSize;
public:
explicit SmFontNode(const SmToken &rNodeToken)
- : SmStructureNode(NFONT, rNodeToken)
+ : SmStructureNode(NFONT, rNodeToken)
+ , meSizeType(FontSizeType::MULTIPLY)
+ , maFontSize(1)
{
- nSizeType = FontSizeType::MULTIPLY;
- aFontSize = Fraction(1L);
}
void SetSizeParameter(const Fraction &rValue, FontSizeType nType);
- const Fraction & GetSizeParameter() const {return aFontSize;}
- const FontSizeType& GetSizeType() const {return nSizeType;}
+ const Fraction & GetSizeParameter() const {return maFontSize;}
+ FontSizeType GetSizeType() const {return meSizeType;}
virtual void Prepare(const SmFormat &rFormat, const SmDocShell &rDocShell) override;
virtual void Arrange(OutputDevice &rDev, const SmFormat &rFormat) override;