sfx2/qa/cppunit/test_misc.cxx | 2 ++ 1 file changed, 2 insertions(+) New commits: commit cd7e262f7e34786496103dbe2be16c198bf97c64 Author: Luboš Luňák <l.lu...@collabora.com> AuthorDate: Thu Jun 2 22:15:23 2022 +0200 Commit: Luboš Luňák <l.lu...@collabora.com> CommitDate: Fri Jun 10 11:20:24 2022 +0200
add missing 'xComponent->dispose()' to a test Change-Id: I0ae2847e81eb2f1fba16e65d89ca1db1e55ac4b8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135577 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lu...@collabora.com> diff --git a/sfx2/qa/cppunit/test_misc.cxx b/sfx2/qa/cppunit/test_misc.cxx index 95ab7e927b09..1bf90cfbc218 100644 --- a/sfx2/qa/cppunit/test_misc.cxx +++ b/sfx2/qa/cppunit/test_misc.cxx @@ -218,6 +218,8 @@ CPPUNIT_TEST_FIXTURE(MiscTest, testOverwrite) catch (const css::uno::Exception&) { } + + xComponent->dispose(); } }