summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-12-13 18:35:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-12-13 18:35:20 +0100
commitac863696a697b8007a7ee525127fb571d84d1b88 (patch)
treede26be1d10fb72f1f071a36e694e5c963fb149cd /svl
parente3cc0ebafa40d1aa55f3603cb89fa9c6c67a855b (diff)
Blind fix for ambiguous CPPUNIT_ASSERT_EQUAL
Change-Id: Ia0730cfd2293c374ec8b8f4aa69fef5d319642e4
Diffstat (limited to 'svl')
-rw-r--r--svl/qa/unit/svl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/qa/unit/svl.cxx b/svl/qa/unit/svl.cxx
index 7ff1d23dcca8..defc53df056d 100644
--- a/svl/qa/unit/svl.cxx
+++ b/svl/qa/unit/svl.cxx
@@ -1506,7 +1506,7 @@ void Test::testColorNamesConversion()
{
aFormatCode = "[" + aGermanKeywords[i] + "]0";
aFormatter.PutandConvertEntry( aFormatCode, nCheckPos, nType, nKey, LANGUAGE_GERMAN, LANGUAGE_ENGLISH_US);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("CheckPos should be 0.", 0, nCheckPos);
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("CheckPos should be 0.", sal_Int32(0), nCheckPos);
CPPUNIT_ASSERT_EQUAL_MESSAGE("Type should be NUMBER.", css::util::NumberFormat::NUMBER, nType);
CPPUNIT_ASSERT_EQUAL( OUString("[" + rEnglishKeywords[i] + "]0"), aFormatCode);
}