diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-08-12 09:31:13 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-12 09:31:13 +0100 |
commit | aca3f5ef4feae793afa765a56ea0cfc797eb4076 (patch) | |
tree | 3c2d82abb5b40d21efd9dff0a776c1a331bb53de | |
parent | 981adae1b0705c94ac8a712fe484aff911d8b086 (diff) |
cppcheck: redundantAssignment
Change-Id: I552211d79144fa11f25fe22d84901c33dcd1aa1d
-rw-r--r-- | sw/qa/extras/ww8export/ww8export.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/extras/ww8export/ww8export.cxx b/sw/qa/extras/ww8export/ww8export.cxx index cdf6d14f361a..5a536f785c04 100644 --- a/sw/qa/extras/ww8export/ww8export.cxx +++ b/sw/qa/extras/ww8export/ww8export.cxx @@ -337,10 +337,10 @@ DECLARE_WW8EXPORT_TEST(testBorderColoursExport, "bordercolours.odt") CPPUNIT_ASSERT_BORDER_EQUAL(expectedTop, border); border = getProperty<table::BorderLine2>(cell, "LeftBorder"); CPPUNIT_ASSERT_BORDER_EQUAL(expectedLeft, border); - border = getProperty<table::BorderLine2>(cell, "BottomBorder"); #if 0 // #if'd out because the "fine dashed" border line style for table borders // does not seem to save or load correctly in odt format at present + border = getProperty<table::BorderLine2>(cell, "BottomBorder"); CPPUNIT_ASSERT_BORDER_EQUAL(expectedBottom, border); #endif |