Kaydet (Commit) 6632987e authored tarafından Thomas Arnhold's avatar Thomas Arnhold

warning C4245: 'initializing' : conversion from 'int' to 'sal_uInt32'...

...signed/unsigned mismatch

Change-Id: I659db5cf9e1e1e682f27b689a06f28a123a9e82b
üst ac212687
......@@ -1121,7 +1121,7 @@ void checkCellValidity( const ScAddress& rValBaseAddr, const ScRange& rRange, co
sMsg.append( nTab32 ).append(")\n");
sMsg.append("Cell: (").append(nCol).append(",").append(nRow).append(",").append(nTab32).append(")");
sal_uInt32 expectedKey(pValData->GetKey());
sal_uInt32 actualKey(-1);
sal_uInt32 actualKey(0);
if(pValDataTest)
actualKey = pValDataTest->GetKey();
CPPUNIT_ASSERT_EQUAL_MESSAGE(sMsg.getStr(), expectedKey, actualKey);
......
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