summaryrefslogtreecommitdiff
path: root/sw/source/filter/xml/xmlimp.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-01 13:01:26 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-03 09:55:58 +0200
commitd05b2b91952927ec40d6ea2f482f76c7ccd25ed3 (patch)
tree427403b1cfb3ce67624185993466a424ea6827e1 /sw/source/filter/xml/xmlimp.cxx
parentf7613d2132e8115b7741e9397b111508f24615cc (diff)
Fix typos
Change-Id: Ia6a6d93bade801fab77bfba701b64a905328c695 Reviewed-on: https://gerrit.libreoffice.org/76774 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sw/source/filter/xml/xmlimp.cxx')
-rw-r--r--sw/source/filter/xml/xmlimp.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/xml/xmlimp.cxx b/sw/source/filter/xml/xmlimp.cxx
index aee43cb6f1ae..26fdcf23934f 100644
--- a/sw/source/filter/xml/xmlimp.cxx
+++ b/sw/source/filter/xml/xmlimp.cxx
@@ -639,7 +639,7 @@ void SwXMLImport::startDocument()
if( !pDoc )
return;
- // Is there a edit shell. If yes, then we are currently inserting
+ // Is there an edit shell. If yes, then we are currently inserting
// a document. We then have to insert at the current edit shell's
// cursor position. That not quite clean code, but there is no other
// way currently.
@@ -687,7 +687,7 @@ void SwXMLImport::startDocument()
SwPaM *pPaM = pTextCursor->GetPaM();
const SwPosition* pPos = pPaM->GetPoint();
- // Split once and remember the node that has been splitted.
+ // Split once and remember the node that has been split.
pDoc->getIDocumentContentOperations().SplitNode( *pPos, false );
*m_pSttNdIdx = pPos->nNode.GetIndex()-1;
@@ -763,7 +763,7 @@ void SwXMLImport::endDocument()
SwPaM *pPaM = pTextCursor->GetPaM();
if( IsInsertMode() && m_pSttNdIdx->GetIndex() )
{
- // If we are in insert mode, join the splitted node that is in front
+ // If we are in insert mode, join the split node that is in front
// of the new content with the first new node. Or in other words:
// Revert the first split node.
SwTextNode* pTextNode = m_pSttNdIdx->GetNode().GetTextNode();