summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-11-17 13:27:53 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-11-17 13:27:53 +0100
commit9579e458a5dbd1099a42ef616dfa4d0287931c22 (patch)
treed6e66cc7999d751a9f314bbcf4b95af937693c62 /sd
parentd9e627039245dc42f003a7cf75642f619a621513 (diff)
loplugin:nullptr
Change-Id: Iaf31a731c9151972ba2fe2ed50074ea59c147550
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/unit/sdmodeltestbase.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/qa/unit/sdmodeltestbase.hxx b/sd/qa/unit/sdmodeltestbase.hxx
index d70f34b5d03a..a9682bbeb1dc 100644
--- a/sd/qa/unit/sdmodeltestbase.hxx
+++ b/sd/qa/unit/sdmodeltestbase.hxx
@@ -268,10 +268,10 @@ protected:
const SdrPage* GetPage( int nPage, sd::DrawDocShellRef xDocShRef )
{
SdDrawDocument* pDoc = xDocShRef->GetDoc() ;
- CPPUNIT_ASSERT_MESSAGE( "no document", pDoc != NULL );
+ CPPUNIT_ASSERT_MESSAGE( "no document", pDoc != nullptr );
const SdrPage* pPage = pDoc->GetPage( nPage );
- CPPUNIT_ASSERT_MESSAGE( "no page", pPage != NULL );
+ CPPUNIT_ASSERT_MESSAGE( "no page", pPage != nullptr );
return pPage;
}