summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-09-10 11:22:56 +0200
committerJulien Nabet <serval2412@yahoo.fr>2021-09-10 19:27:24 +0200
commitc42eb3d3f6c8be0bb8d3d4c6955d13279c0dbcc1 (patch)
tree3a315df9fa69febbd6c98896fbdc5f1904f58fb0 /starmath
parent7d4142269e2deb756f03774a9d6d2861fe9eba04 (diff)
Fix typos
Change-Id: Icb9acdf67be84e3bedab53188246890b6aa82a7d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120286 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/inc/mathml/element.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/starmath/inc/mathml/element.hxx b/starmath/inc/mathml/element.hxx
index 3a6514542856..8f510f57a72b 100644
--- a/starmath/inc/mathml/element.hxx
+++ b/starmath/inc/mathml/element.hxx
@@ -83,7 +83,7 @@ private:
// Parent element
SmMlElement* m_aParentElement;
- // Child id, so it is possible to iterata
+ // Child id, so it is possible to iterate
size_t m_nSubElementId;
private:
@@ -147,7 +147,7 @@ public: // attributes
size_t getAttributeCount() const { return m_aAttributeList.size(); };
/**
- * Get's a given attribute.
+ * Gets a given attribute.
* If no available returns empty attribute.
* @param nAttributePos
* @return given attribute.
@@ -159,7 +159,7 @@ public: // attributes
}
/**
- * Get's a given attribute.
+ * Gets a given attribute.
* If no available returns empty attribute.
* @param nAttributePos
* @return given attribute.
@@ -167,7 +167,7 @@ public: // attributes
SmMlAttribute getAttribute(SmMlAttributeValueType aAttributeType) const;
/**
- * Set's a given attribute.
+ * Sets a given attribute.
* If no available does nothing.
* @param nAttributePos
* @return given attribute.
@@ -189,7 +189,7 @@ public: // attributes
protected: // attributes
/**
- * Get's a given attribute.
+ * Gets a given attribute.
* If no available returns empty attribute.
* @param nAttributePos
* @return given attribute.
@@ -200,7 +200,7 @@ protected: // attributes
}
/**
- * Set's a given attribute.
+ * Sets a given attribute.
* If no available undefined behaviour.
* @param nAttributePos
* @param aAttribute
@@ -246,12 +246,12 @@ public: // sub elements
void setSubElement(size_t nPos, SmMlElement* aElement);
/**
- * Get's subelement id
+ * Gets subelement id
*/
size_t getSubElementId() const { return m_nSubElementId; }
/**
- * Set's subelement id
+ * Sets subelement id
* @param nSubElementId
*/
void setSubElementId(size_t nSubElementId) { m_nSubElementId = nSubElementId; }