diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-11-18 17:29:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-11-18 17:29:20 +0100 |
commit | 14af38f429f84a75a9dae60d74d41c57efd709f6 (patch) | |
tree | ae9bf4a7b7778e740c480e3de31b4afdc3cfa859 /sc/qa | |
parent | 0da4cdeac46117c6b6a4e38b037524a8772325f6 (diff) |
Missing XComponent.dispose calls in screenshot tests
Change-Id: I5df25a16303719593d40f08d1e7c15e4636a2d02
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/screenshots/screenshots.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/qa/unit/screenshots/screenshots.cxx b/sc/qa/unit/screenshots/screenshots.cxx index 870f774b1b9f..0f1e5a21f9bf 100644 --- a/sc/qa/unit/screenshots/screenshots.cxx +++ b/sc/qa/unit/screenshots/screenshots.cxx @@ -282,6 +282,9 @@ void ScScreenshotTest::testOpeningModalDialogs() /// process input file containing the UXMLDescriptions of the dialogs to dump processDialogBatchFile("sc/qa/unit/screenshots/data/screenshots.txt"); + + mxComponent->dispose(); + mxComponent.clear(); } CPPUNIT_TEST_SUITE_REGISTRATION(ScScreenshotTest); |