summaryrefslogtreecommitdiff
path: root/sw/qa/extras
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-28 23:17:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-28 23:17:18 +0200
commite17fa49d99ce8de3fb9d026b515a7c7e1f00d269 (patch)
treeec75d893d51dc2e7148cb968863cf7d91175780c /sw/qa/extras
parent62031cd02d1fbb27c2e5bc9eee2a8dd7c7c9e295 (diff)
loplugin:unreffun
Change-Id: I89674148bd25f0ee996bf8796138bbab234d8c8f
Diffstat (limited to 'sw/qa/extras')
-rw-r--r--sw/qa/extras/globalfilter/globalfilter.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/sw/qa/extras/globalfilter/globalfilter.cxx b/sw/qa/extras/globalfilter/globalfilter.cxx
index c7af47e35558..66dd3aa2aa30 100644
--- a/sw/qa/extras/globalfilter/globalfilter.cxx
+++ b/sw/qa/extras/globalfilter/globalfilter.cxx
@@ -33,7 +33,9 @@ public:
void testCharHighlightBody();
void testMSCharBackgroundEditing();
void testCharBackgroundToHighlighting();
+#if !defined(WNT) && !defined(MACOSX)
void testSkipImages();
+#endif
CPPUNIT_TEST_SUITE(Test);
CPPUNIT_TEST(testSwappedOutImageExport);
@@ -657,6 +659,7 @@ void Test::testCharBackgroundToHighlighting()
}
}
+#if !defined(WNT) && !defined(MACOSX)
void Test::testSkipImages()
{
// Check how LO skips image loading (but not texts of textboxes and custom shapes)
@@ -732,7 +735,7 @@ void Test::testSkipImages()
CPPUNIT_ASSERT_EQUAL_MESSAGE(sFailedMessage.getStr(), static_cast<sal_Int32>(bSkipImages ? 0 : 3), nImageCount );
}
}
-
+#endif
CPPUNIT_TEST_SUITE_REGISTRATION(Test);