summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-24 13:39:16 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-24 13:39:16 +0000
commitdf2533ec4063153c06bc8b475977601517ba2cd6 (patch)
tree6f77d4b4c1116289767fed546bf5dead39106142 /sw
parent2c7528552d901f855224b6a35dcc768d42ddaec6 (diff)
fix MacOSX-x86_49-TDF tinderbox
Change-Id: I15632bd87be37d9bb5815c9d800271dfd4c3b016
Diffstat (limited to 'sw')
-rw-r--r--sw/qa/extras/ooxmlexport/ooxmlexport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
index 1ee6af8dd9d9..d7692ac44da0 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
@@ -3485,8 +3485,8 @@ DECLARE_OOXMLEXPORT_TEST(testEmbeddedXlsx, "embedded-xlsx.docx")
// finally check the embedded files are present in the zipped document
uno::Reference<packages::zip::XZipFileAccess2> xNameAccess = packages::zip::ZipFileAccess::createWithURL(comphelper::getComponentContext(m_xSFactory), m_aTempFile.GetURL());
uno::Sequence<OUString> names = xNameAccess->getElementNames();
- sal_Int32 nSheetFiles = 0;
- sal_Int32 nImageFiles = 0;
+ int nSheetFiles = 0;
+ int nImageFiles = 0;
for (int i=0; i<names.getLength(); i++)
{
if(names[i].startsWith("word/embeddings/Microsoft_Excel_Worksheet"))