summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2014-05-27 14:02:24 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2014-05-27 14:02:24 +0200
commita9b339b7486398fae4463427d39c3b229b8e1f10 (patch)
tree5490c3fe94a28d95e99a5dadb923375476f224c9
parent10a2c2e9026b587a47532865901ea6d5ae9c536a (diff)
fix build-break on windows
ae95cdd2a1708a8e9e114dd9bcf577f57f1f5af3 introduced a check, and did put it outside of a #if !defined(WNT) block... Change-Id: Id200c6f3161d0c6c611e0b1c293adbd060579cd7
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
index f6c3591007cd..ef0fa568b4eb 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
@@ -2055,7 +2055,6 @@ DECLARE_OOXMLEXPORT_TEST(testFDO78384,"fdo78384.docx")
return;
assertXPath(pXmlDoc, "/w:document/w:body/w:p[1]/w:r[1]/w:rPr/w:rFonts","ascii","Wingdings");
}
-#endif
DECLARE_OOXMLEXPORT_TEST(testfdo79008, "fdo79008.docx")
{
@@ -2067,6 +2066,8 @@ DECLARE_OOXMLEXPORT_TEST(testfdo79008, "fdo79008.docx")
return;
}
+#endif
+
CPPUNIT_PLUGIN_IMPLEMENT();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */