summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-10 19:59:38 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-10 20:22:50 +0300
commit6835d9f3074c1030be6632bdaff6c8398c696429 (patch)
tree90bdc179c3522a71f87fef348d9aaced458b611d /starmath
parenta8877197072523ec60fadb138f9790aa2bf66cd2 (diff)
It's "its", not "it's"
Change-Id: Ieaa787afd7cc622b4750a2ee8f17f6dad934ba63
Diffstat (limited to 'starmath')
-rw-r--r--starmath/inc/cursor.hxx2
-rw-r--r--starmath/inc/node.hxx2
-rw-r--r--starmath/source/cursor.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/starmath/inc/cursor.hxx b/starmath/inc/cursor.hxx
index 0f4ca80d08bc..6f80e417cfea 100644
--- a/starmath/inc/cursor.hxx
+++ b/starmath/inc/cursor.hxx
@@ -263,7 +263,7 @@ private:
/** Auxiliary function for calling LineToList on a node
*
- * This method sets pNode = NULL and remove it from it's parent.
+ * This method sets pNode = NULL and remove it from its parent.
* (Assuming it has a parent, and is a child of it).
*/
static SmNodeList* NodeToList(SmNode*& rpNode, SmNodeList* pList = new SmNodeList()){
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index 0834a6c7b0bc..b81a9484b835 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -1231,7 +1231,7 @@ public:
/** Font node
*
- * Used to change the font of it's children.
+ * Used to change the font of its children.
*/
class SmFontNode : public SmStructureNode
{
diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx
index a869b4ab045b..f8a7ef9cb6d9 100644
--- a/starmath/source/cursor.cxx
+++ b/starmath/source/cursor.cxx
@@ -263,7 +263,7 @@ void SmCursor::Delete(){
SmStructureNode* pLineParent = pLine->GetParent();
//Find line offset in parent
int nLineOffset = pLineParent->IndexOfSubNode(pLine);
- OSL_ENSURE(nLineOffset != -1, "pLine must be a child of it's parent!");
+ OSL_ENSURE(nLineOffset != -1, "pLine must be a child of its parent!");
//Position after delete
SmCaretPos PosAfterDelete;