summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-04 10:16:38 +0100
committerAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-04 17:11:57 +0100
commite3ea88c6db5facde01ad0c46d8f9393c4db08c5c (patch)
tree591458fb88e9b09ea7fb196e2ea2e0cb6a74b92b /starmath/inc/node.hxx
parente1d7242341ec148b631a96e6d63697bce6a497c9 (diff)
Fix typo in code
Here it passed "make build-nocheck" on Linux Change-Id: I1f6ea440e54f87a90abb1b6e9983443764516e06 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110373 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Dante DM <dante19031999@gmail.com> Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net> Tested-by: Jenkins
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r--starmath/inc/node.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index d0b81737a31d..3c267bb4a9ad 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -40,7 +40,7 @@
* SmVerticalBraceNode overbrace; underbrace;
* SmOperNode sum from to; int from to;
* SmAlignNode text alignment
- * SmAttributNode font attributes; bold;
+ * SmAttributeNode font attributes; bold;
* SmFontNode font serif; ...
* SmMatrixNode matrix
* SmVisibleNode drawable node
@@ -127,7 +127,7 @@ enum class SmScaleMode
enum class SmNodeType
{
/* 0*/ Table, Brace, Bracebody, Oper, Align,
-/* 5*/ Attribut, Font, UnHor, BinHor, BinVer,
+/* 5*/ Attribute, Font, UnHor, BinHor, BinVer,
/*10*/ BinDiagonal, SubSup, Matrix, Place, Text,
/*15*/ Special, GlyphSpecial, Math, Blank, Error,
/*20*/ Line, Expression, PolyLine, Root, RootSymbol,
@@ -225,7 +225,7 @@ public:
* @param nAttrib
* @return
*/
- void SetAttribut(FontAttribute nAttrib);
+ void SetAttribute(FontAttribute nAttrib);
/**
* Clears the font attribute nAttrib.
@@ -233,7 +233,7 @@ public:
* @param nAttrib
* @return
*/
- void ClearAttribut(FontAttribute nAttrib);
+ void ClearAttribute(FontAttribute nAttrib);
/**
* Gets the font.
@@ -1902,11 +1902,11 @@ public:
* 1: Body<BR>
* None of these may be NULL.
*/
-class SmAttributNode final : public SmStructureNode
+class SmAttributeNode final : public SmStructureNode
{
public:
- explicit SmAttributNode(const SmToken &rNodeToken)
- : SmStructureNode(SmNodeType::Attribut, rNodeToken, 2) {}
+ explicit SmAttributeNode(const SmToken &rNodeToken)
+ : SmStructureNode(SmNodeType::Attribute, rNodeToken, 2) {}
/**
* Prepares the SmRect to render.
@@ -1928,14 +1928,14 @@ public:
* Gets the attribute data.
* @return attribute data
*/
- const SmNode* Attribute() const { return const_cast<SmAttributNode *>(this)->Attribute(); }
+ const SmNode* Attribute() const { return const_cast<SmAttributeNode *>(this)->Attribute(); }
SmNode* Attribute() { assert( GetNumSubNodes() == 2 ); return GetSubNode( 0 ); }
/**
* Gets the body data ( the nodes affected by the attribute ).
* @return body data
*/
- const SmNode* Body() const { return const_cast<SmAttributNode *>(this)->Body(); }
+ const SmNode* Body() const { return const_cast<SmAttributeNode *>(this)->Body(); }
SmNode* Body() { assert( GetNumSubNodes() == 2 ); return GetSubNode( 1 ); }
};