Kaydet (Commit) db20a50f authored tarafından Caolán McNamara's avatar Caolán McNamara

sal_Int32 as long on 32bit, how we hate thee

Change-Id: I702509c7ad9dd3e84feb6d880264df36afe3c5b3
üst 87dfa6dd
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment