diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-02-04 10:16:38 +0100 |
---|---|---|
committer | Andrea Gelmini <andrea.gelmini@gelma.net> | 2021-02-04 17:11:57 +0100 |
commit | e3ea88c6db5facde01ad0c46d8f9393c4db08c5c (patch) | |
tree | 591458fb88e9b09ea7fb196e2ea2e0cb6a74b92b /starmath/source/wordexportbase.hxx | |
parent | e1d7242341ec148b631a96e6d63697bce6a497c9 (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/source/wordexportbase.hxx')
-rw-r--r-- | starmath/source/wordexportbase.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/wordexportbase.hxx b/starmath/source/wordexportbase.hxx index af66167a17fb..28bdf8ba4336 100644 --- a/starmath/source/wordexportbase.hxx +++ b/starmath/source/wordexportbase.hxx @@ -10,7 +10,7 @@ #ifndef INCLUDED_STARMATH_SOURCE_WORDEXPORTBASE_HXX #define INCLUDED_STARMATH_SOURCE_WORDEXPORTBASE_HXX -class SmAttributNode; +class SmAttributeNode; class SmBinHorNode; class SmBraceNode; class SmMatrixNode; @@ -41,7 +41,7 @@ protected: void HandleUnaryOperation(const SmUnHorNode* pNode, int nLevel); void HandleBinaryOperation(const SmBinHorNode* pNode, int nLevel); virtual void HandleRoot(const SmRootNode* pNode, int nLevel) = 0; - virtual void HandleAttribute(const SmAttributNode* pNode, int nLevel) = 0; + virtual void HandleAttribute(const SmAttributeNode* pNode, int nLevel) = 0; virtual void HandleOperator(const SmOperNode* pNode, int nLevel) = 0; void HandleSubSupScript(const SmSubSupNode* pNode, int nLevel); virtual void HandleSubSupScriptInternal(const SmSubSupNode* pNode, int nLevel, int flags) = 0; |