diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:26:03 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:53 +0100 |
commit | 5d353ff608760799a25aa8e6d016d8414d2f1fc3 (patch) | |
tree | 6701aebe51da4e7e61e29d340be6054942f1ff67 /test/source/htmltesttools.cxx | |
parent | 01b49802c7cda7fd4d5ba71263cef7bc95234b89 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I31e61fc91dff70f32143d84ccf308f2bbc9c740e
Diffstat (limited to 'test/source/htmltesttools.cxx')
-rw-r--r-- | test/source/htmltesttools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/htmltesttools.cxx b/test/source/htmltesttools.cxx index 85d65c0c0d71..f876dec101a2 100644 --- a/test/source/htmltesttools.cxx +++ b/test/source/htmltesttools.cxx @@ -30,7 +30,7 @@ htmlDocPtr HtmlTestTools::parseHtmlStream(SvStream* pStream) std::unique_ptr<sal_uInt8[]> pBuffer(new sal_uInt8[nSize + 1]); pStream->Read(pBuffer.get(), nSize); pBuffer[nSize] = 0; - return htmlParseDoc(reinterpret_cast<xmlChar*>(pBuffer.get()), NULL); + return htmlParseDoc(reinterpret_cast<xmlChar*>(pBuffer.get()), nullptr); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |