summaryrefslogtreecommitdiff
path: root/l10ntools/source/helper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:18:46 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:30 +0100
commitaf9c3fa41ba16ae4dc5e7ccbf626c8701ae0aa19 (patch)
tree3da945e18a31540e01cb9242754204e8740125cd /l10ntools/source/helper.cxx
parent8980565881fcc484bb506b3135223b6a42aefbf0 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I87dbff06345f24064b87c375e5381cb27118e614
Diffstat (limited to 'l10ntools/source/helper.cxx')
-rw-r--r--l10ntools/source/helper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/helper.cxx b/l10ntools/source/helper.cxx
index 85bfe4a17f96..491df41b3392 100644
--- a/l10ntools/source/helper.cxx
+++ b/l10ntools/source/helper.cxx
@@ -128,7 +128,7 @@ bool isWellFormedXML( OString const & text )
content += text;
content += "</root>";
doc = xmlParseMemory(content.getStr(),(int)content.getLength());
- if (doc == NULL) {
+ if (doc == nullptr) {
result = false;
}
xmlFreeDoc(doc);