diff options
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/inc/mathml/element.hxx | 16 |
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; } |