From 5bbdb9423e15b68438bb8397c15635e044129e28 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 Nov 2015 10:21:32 +0100 Subject: loplugin:nullptr (automatic rewrite) Change-Id: I8df6c1c7d2312a4864750180561a3e63fe37003f --- rsc/source/res/rscclobj.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rsc/source/res/rscclobj.cxx') diff --git a/rsc/source/res/rscclobj.cxx b/rsc/source/res/rscclobj.cxx index 8788ecba1659..940163644632 100644 --- a/rsc/source/res/rscclobj.cxx +++ b/rsc/source/res/rscclobj.cxx @@ -24,7 +24,7 @@ RefNode::RefNode( Atom nTyp ) { - pObjBiTree = 0; + pObjBiTree = nullptr; nTypNameId = nTyp; } @@ -54,7 +54,7 @@ ObjNode * RefNode::GetObjNode( const RscId & rRscId ) { if( pObjBiTree ) return pObjBiTree->Search( rRscId ); - return NULL; + return nullptr; } ObjNode::ObjNode( const RscId & rId, CLASS_DATA pData, sal_uLong lKey ) -- cgit