diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-06-04 11:53:35 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-06-04 11:54:35 +0200 |
commit | 78bd14939abb8040182b9db7b2c28c03d60eccb9 (patch) | |
tree | 0a00911ecf58adfb10c89330e7401e3bd5f14524 /sc/qa/unit/screenshots | |
parent | 98e4c241e9ef918c739638154b7ba850d70e0eed (diff) |
loplugin:unreffun
...since 25d6789e0e7949fa2e7441eeeb0f6e9cf701dbed "sc: disable test that fails
on Windows"
Change-Id: I730495fe9b6d648c75a374b2cd15024e56c85126
Diffstat (limited to 'sc/qa/unit/screenshots')
-rw-r--r-- | sc/qa/unit/screenshots/screenshots.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/qa/unit/screenshots/screenshots.cxx b/sc/qa/unit/screenshots/screenshots.cxx index b04d49b43fe3..0bab57810918 100644 --- a/sc/qa/unit/screenshots/screenshots.cxx +++ b/sc/qa/unit/screenshots/screenshots.cxx @@ -73,10 +73,15 @@ public: ScScreenshotTest(); void testOpeningModalDialogs(); +#if 0 void testMultiViewCopyPaste(); +#endif CPPUNIT_TEST_SUITE(ScScreenshotTest); CPPUNIT_TEST(testOpeningModalDialogs); +#if 0 + CPPUNIT_TEST(testMultiViewCopyPaste); +#endif CPPUNIT_TEST_SUITE_END(); }; @@ -288,6 +293,7 @@ void ScScreenshotTest::testOpeningModalDialogs() mxComponent.clear(); } +#if 0 void ScScreenshotTest::testMultiViewCopyPaste() { initialize(); @@ -334,6 +340,7 @@ void ScScreenshotTest::testMultiViewCopyPaste() mxComponent->dispose(); mxComponent.clear(); } +#endif CPPUNIT_TEST_SUITE_REGISTRATION(ScScreenshotTest); |