[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - test/source
Stephan Bergmann
sbergman at redhat.com
Wed Dec 18 06:45:59 PST 2013
test/source/sheet/xsheetannotations.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit d9168242f5f8800f88d4947bd1fbfc30a969429c
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Dec 6 14:32:26 2013 +0100
Fix integer ambiguity
Change-Id: I1247af709baf250b82a4156ea2cbf29c758f0c78
diff --git a/test/source/sheet/xsheetannotations.cxx b/test/source/sheet/xsheetannotations.cxx
index a56fc6b..cf4b82a 100644
--- a/test/source/sheet/xsheetannotations.cxx
+++ b/test/source/sheet/xsheetannotations.cxx
@@ -52,7 +52,7 @@ void XSheetAnnotations::testInsertNew()
sal_Int32 nBefore = xAnnotationsIndex->getCount();
CPPUNIT_ASSERT_EQUAL_MESSAGE(
- "There should already be one note", 1, nBefore );
+ "There should already be one note", sal_Int32(1), nBefore );
// insert the annotation
table::CellAddress xTargetCellAddress (0,3,4);
More information about the Libreoffice-commits
mailing list