diff options
Diffstat (limited to 'cppuhelper/qa/ifcontainer')
-rw-r--r-- | cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx index 847b3b877968..3190b7795db2 100644 --- a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx +++ b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx @@ -156,7 +156,7 @@ namespace cppu_ifcontainer pHelper = pContainer->getContainer(pTypes[i]); - CPPUNIT_ASSERT_MESSAGE("no helper", pHelper != NULL); + CPPUNIT_ASSERT_MESSAGE("no helper", pHelper != nullptr); Sequence<Reference< XInterface > > aSeq = pHelper->getElements(); CPPUNIT_ASSERT_MESSAGE("wrong num elements", aSeq.getLength() == 2); CPPUNIT_ASSERT_MESSAGE("match", aSeq[0] == xRefs[i*2]); @@ -174,7 +174,7 @@ namespace cppu_ifcontainer pHelper = pContainer->getContainer(pTypes[i]); - CPPUNIT_ASSERT_MESSAGE("no helper", pHelper != NULL); + CPPUNIT_ASSERT_MESSAGE("no helper", pHelper != nullptr); Sequence<Reference< XInterface > > aSeq = pHelper->getElements(); CPPUNIT_ASSERT_MESSAGE("wrong num elements", aSeq.getLength() == 1); CPPUNIT_ASSERT_MESSAGE("match", aSeq[0] == xRefs[i*2]); @@ -190,7 +190,7 @@ namespace cppu_ifcontainer cppu::OInterfaceContainerHelper *pHelper; pHelper = pContainer->getContainer(pTypes[i]); - CPPUNIT_ASSERT_MESSAGE("no helper", pHelper != NULL); + CPPUNIT_ASSERT_MESSAGE("no helper", pHelper != nullptr); Sequence<Reference< XInterface > > aSeq = pHelper->getElements(); CPPUNIT_ASSERT_MESSAGE("wrong num elements", aSeq.getLength() == 0); } |