Kaydet (Commit) 665989cf authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix integer ambiguity

Change-Id: I1247af709baf250b82a4156ea2cbf29c758f0c78
üst f51877b1
...@@ -52,7 +52,7 @@ void XSheetAnnotations::testInsertNew() ...@@ -52,7 +52,7 @@ void XSheetAnnotations::testInsertNew()
sal_Int32 nBefore = xAnnotationsIndex->getCount(); sal_Int32 nBefore = xAnnotationsIndex->getCount();
CPPUNIT_ASSERT_EQUAL_MESSAGE( 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 // insert the annotation
table::CellAddress xTargetCellAddress (0,3,4); table::CellAddress xTargetCellAddress (0,3,4);
......
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