diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-07-25 08:40:32 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-07-25 08:59:34 +0300 |
commit | facf48d58f7438031a3a5fabd0f59134f6d43851 (patch) | |
tree | a49a31a5fc53df123481750201d99c99ce4c95f0 /sd | |
parent | b0b6d4cf70d7ed0eb4b656d0ef1fdeb1c60eae28 (diff) |
loplugin:nullptr
Change-Id: If8f933706b0acb86dcdebb85ec647abfd61fa949
Diffstat (limited to 'sd')
-rw-r--r-- | sd/qa/unit/export-tests.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/qa/unit/export-tests.cxx b/sd/qa/unit/export-tests.cxx index 8d195f2cf56a..459801422b64 100644 --- a/sd/qa/unit/export-tests.cxx +++ b/sd/qa/unit/export-tests.cxx @@ -219,7 +219,7 @@ void SdExportTest::testMediaEmbedding() #else // If glTF is not supported, then the fallback image is imported SdrGrafObj *pGrafic = dynamic_cast<SdrGrafObj*>( pPage->GetObj( 2 )); - CPPUNIT_ASSERT_MESSAGE( "Could not load glTF fallback image", pGrafic != NULL); + CPPUNIT_ASSERT_MESSAGE( "Could not load glTF fallback image", pGrafic != nullptr); CPPUNIT_ASSERT_EQUAL( OUString( "vnd.sun.star.Package:Models/Fallbacks/duck.png" ), pGrafic->GetGrafStreamURL()); #endif |