summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-06-26 17:31:36 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-08-24 11:28:40 +0200
commit369dd545ddb19f1995d3c1792f2f937a3300dddc (patch)
treec0335d94b678b311d5ba8679b364a24dfbb5f65f
parent5a70acd99f557d84bb5b3766d749b52b1774b9ff (diff)
Avoid loplugin:unreffun
...after 272d5a02a3de2350f8af7a93281b651316b24ae5 "Revert 'tdf#108524 sw: attempt to split section frames inside table cells'" (cherry picked from commit 12ca907139c05ded23cb22aab2e03a52645adfa0) Conflicts: sw/qa/extras/uiwriter/uiwriter.cxx Change-Id: Ic1ec8cd3284e2ba98630552c80d99b5d67fc7efd
-rw-r--r--sw/qa/extras/uiwriter/uiwriter.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx b/sw/qa/extras/uiwriter/uiwriter.cxx
index e2001dc3ef81..a027a80b5f44 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -200,7 +200,9 @@ public:
void testTdf84695();
void testTdf84695NormalChar();
void testParagraphOfTextRange();
+#if 0
void testTdf108524();
+#endif
void testTableInSection();
CPPUNIT_TEST_SUITE(SwUiWriterTest);
@@ -305,7 +307,9 @@ public:
CPPUNIT_TEST(testTdf84695NormalChar);
CPPUNIT_TEST(testParagraphOfTextRange);
CPPUNIT_TEST(testTdf108524);
-// CPPUNIT_TEST(testTdf108524);
+#if 0
+ CPPUNIT_TEST(testTdf108524);
+#endif
CPPUNIT_TEST(testTableInSection);
CPPUNIT_TEST_SUITE_END();
@@ -3732,6 +3736,7 @@ void SwUiWriterTest::testParagraphOfTextRange()
CPPUNIT_ASSERT_EQUAL(OUString("In section"), xParagraph->getString());
}
+#if 0
void SwUiWriterTest::testTdf108524()
{
createDoc("tdf108524.odt");
@@ -3744,6 +3749,7 @@ void SwUiWriterTest::testTdf108524()
// and it was cut off.
assertXPath(pXmlDoc, "/root/page[2]/body/tab/row/cell/section", 1);
}
+#endif
void SwUiWriterTest::testTableInSection()
{