diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/source/screenshot_test.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/source/screenshot_test.cxx b/test/source/screenshot_test.cxx index 650b9cd70912..df107b8f080d 100644 --- a/test/source/screenshot_test.cxx +++ b/test/source/screenshot_test.cxx @@ -107,9 +107,8 @@ void ScreenshotTest::saveScreenshot(Dialog& rDialog) } } -VclAbstractDialog* ScreenshotTest::createDialogByName(const OString& rName) +VclPtr<VclAbstractDialog> ScreenshotTest::createDialogByName(const OString& rName) { - VclAbstractDialog* pRetval = nullptr; const mapType::const_iterator aHit = maKnownDialogs.find(rName); if (aHit != maKnownDialogs.end()) @@ -117,7 +116,7 @@ VclAbstractDialog* ScreenshotTest::createDialogByName(const OString& rName) return createDialogByID((*aHit).second); } - return pRetval; + return VclPtr<VclAbstractDialog>(); } void ScreenshotTest::dumpDialogToPath(VclAbstractDialog& rDialog) |