summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-06-19 15:52:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-06-19 15:52:25 +0100
commitdb20a50fab35c15baf55f0146ed0cb80527053e8 (patch)
treea70d7e74ff1a52bda9aaeee6deab33bc476b92d9 /sw
parent87dfa6dd336d596112c0beb6b42f082178461678 (diff)
sal_Int32 as long on 32bit, how we hate thee
Change-Id: I702509c7ad9dd3e84feb6d880264df36afe3c5b3
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 3dbb0a45febf..133cf6e220b0 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport.cxx
@@ -823,7 +823,7 @@ void Test::testFdo64238_a()
uno::Reference< text::XTextRange > xFooterParagraph = getParagraphOfText( 1, xFooterText );
uno::Reference<container::XEnumerationAccess> xRunEnumAccess(xFooterParagraph, uno::UNO_QUERY);
uno::Reference<container::XEnumeration> xRunEnum = xRunEnumAccess->createEnumeration();
- int numOfRuns = 0;
+ sal_Int32 numOfRuns = 0;
while (xRunEnum->hasMoreElements())
{
uno::Reference<text::XTextRange> xRun(xRunEnum->nextElement(), uno::UNO_QUERY);
@@ -843,7 +843,7 @@ void Test::testFdo64238_b()
uno::Reference< text::XTextRange > xFooterParagraph = getParagraphOfText( 1, xFooterText );
uno::Reference<container::XEnumerationAccess> xRunEnumAccess(xFooterParagraph, uno::UNO_QUERY);
uno::Reference<container::XEnumeration> xRunEnum = xRunEnumAccess->createEnumeration();
- int numOfRuns = 0;
+ sal_Int32 numOfRuns = 0;
while (xRunEnum->hasMoreElements())
{
uno::Reference<text::XTextRange> xRun(xRunEnum->nextElement(), uno::UNO_QUERY);