diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-07-29 00:22:14 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-07-29 10:09:50 +0200 |
commit | 9e857693e0cb05448be681ea27d7500c25b34786 (patch) | |
tree | c28f5fef5d14a271a0ceb23fd8b78891f5fd3c85 /l10ntools | |
parent | 4a9ac82cab9d77e593f9ea4a070eadb50a2bba0a (diff) |
Fix typos
Change-Id: Ic2fb0772648b3f93c2fdfa4d2f663b6ede2ead51
Reviewed-on: https://gerrit.libreoffice.org/76507
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/inc/xmlparse.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/inc/xmlparse.hxx b/l10ntools/inc/xmlparse.hxx index a9d2893d68b3..039b7f8ac387 100644 --- a/l10ntools/inc/xmlparse.hxx +++ b/l10ntools/inc/xmlparse.hxx @@ -248,7 +248,7 @@ public: /// create a data node XMLData( const OString &rData, // the initial data - XMLParentNode *pParent // the parent node of this data, typically a element node + XMLParentNode *pParent // the parent node of this data, typically an element node ) : XMLChildNode( pParent ), m_sData( rData ) {} @@ -274,7 +274,7 @@ public: /// create a comment node XMLComment( const OString &rComment, // the comment - XMLParentNode *pParent // the parent node of this comemnt, typically a element node + XMLParentNode *pParent // the parent node of this comemnt, typically an element node ) : XMLChildNode( pParent ), m_sComment( rComment ) {} @@ -297,7 +297,7 @@ public: /// create a comment node XMLDefault( const OString &rDefault, // the comment - XMLParentNode *pParent // the parent node of this comemnt, typically a element node + XMLParentNode *pParent // the parent node of this comemnt, typically an element node ) : XMLChildNode( pParent ), m_sDefault( rDefault ) {} |