summaryrefslogtreecommitdiff
path: root/xmlhelp/source/treeview
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:29:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:32:01 +0100
commit87bae0e188aa3ce3c31d1aa91707c0fad6b81b65 (patch)
tree0d57a266b067952edd63e7cd0b3caa07d8bbd87e /xmlhelp/source/treeview
parent42e2262cdd05718a3286f813da6f53805846da02 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: Ibdc68ac3fa6e1424337096c720c8c9605b767480
Diffstat (limited to 'xmlhelp/source/treeview')
-rw-r--r--xmlhelp/source/treeview/tvread.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlhelp/source/treeview/tvread.cxx b/xmlhelp/source/treeview/tvread.cxx
index 27e2dafab6f6..f26c7f939aec 100644
--- a/xmlhelp/source/treeview/tvread.cxx
+++ b/xmlhelp/source/treeview/tvread.cxx
@@ -47,7 +47,7 @@ namespace treeview {
public:
- explicit TVDom( TVDom* arent = 0 )
+ explicit TVDom( TVDom* arent = nullptr )
: kind( other ),
parent( arent ),
children( 0 )
@@ -425,7 +425,7 @@ TVChildTarget::TVChildTarget( const Reference< XComponentContext >& xContext )
aFile.read( s,len,ret );
aFile.close();
- XML_Parser parser = XML_ParserCreate( 0 );
+ XML_Parser parser = XML_ParserCreate( nullptr );
XML_SetElementHandler( parser,
start_handler,
end_handler );