summaryrefslogtreecommitdiff
path: root/starmath/qa
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/qa
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/qa')
-rw-r--r--starmath/qa/cppunit/mock-visitor.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/qa/cppunit/mock-visitor.hxx b/starmath/qa/cppunit/mock-visitor.hxx
index 8dab85336357..ee17cf6f836f 100644
--- a/starmath/qa/cppunit/mock-visitor.hxx
+++ b/starmath/qa/cppunit/mock-visitor.hxx
@@ -52,9 +52,9 @@ public:
VisitChildren( pNode );
}
- void Visit( SmAttributNode* pNode ) override {
- CPPUNIT_ASSERT_EQUAL_MESSAGE("SmAttributNode should have type SmNodeType::Attribut",
- SmNodeType::Attribut, pNode->GetType());
+ void Visit( SmAttributeNode* pNode ) override {
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("SmAttributeNode should have type SmNodeType::Attribute",
+ SmNodeType::Attribute, pNode->GetType());
VisitChildren( pNode );
}