summaryrefslogtreecommitdiffstats
path: root/l10ntools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-11 12:50:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-11 12:50:00 +0200
commit7b8f64cfecf0eac97bca3146302394fd93af4bd8 (patch)
treeab866747784025978aa8095da07cae3cd9cb3161 /l10ntools
parentloplugin:cstylecast: nop between pointer types of exactly same spelling (diff)
downloadcore-7b8f64cfecf0eac97bca3146302394fd93af4bd8.tar.gz
core-7b8f64cfecf0eac97bca3146302394fd93af4bd8.zip
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: Ia2d6f3e05398395af5e12ce9c1b35484f06a13b4
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/source/xmlparse.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/xmlparse.cxx b/l10ntools/source/xmlparse.cxx
index 13538c175a03..0171db926342 100644
--- a/l10ntools/source/xmlparse.cxx
+++ b/l10ntools/source/xmlparse.cxx
@@ -869,7 +869,7 @@ void SimpleXMLParser::DefaultHandler(
void SimpleXMLParser::StartElement(
const XML_Char *name, const XML_Char **atts )
{
- XMLElement *pElement = new XMLElement( OString(name), ( XMLParentNode * ) m_pCurNode );
+ XMLElement *pElement = new XMLElement( OString(name), m_pCurNode );
m_pCurNode = pElement;
m_pCurData = NULL;