summaryrefslogtreecommitdiff
path: root/rsc/source/res/rscclobj.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-10 10:21:32 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-10 10:31:34 +0100
commit5bbdb9423e15b68438bb8397c15635e044129e28 (patch)
tree737406d1586cdd8b5247f7f230ab59bf0bb87bbb /rsc/source/res/rscclobj.cxx
parente96bf3c40f945d15a8bdc9cffc27346dfb3cb246 (diff)
loplugin:nullptr (automatic rewrite)
Change-Id: I8df6c1c7d2312a4864750180561a3e63fe37003f
Diffstat (limited to 'rsc/source/res/rscclobj.cxx')
-rw-r--r--rsc/source/res/rscclobj.cxx4
1 files changed, 2 insertions, 2 deletions
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 )