summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-08-12 15:00:33 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-08-13 10:10:48 +0200
commit6632987e02679c159e18bc90906640c7162009b7 (patch)
tree52bbf88d20acc7fa155b5f94dfb2f799fb4a9f38 /sc
parentac2126879d3e348bca332ae8b2b0da6605c89082 (diff)
warning C4245: 'initializing' : conversion from 'int' to 'sal_uInt32'...
...signed/unsigned mismatch Change-Id: I659db5cf9e1e1e682f27b689a06f28a123a9e82b
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/unit/subsequent_filters-test.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx
index 0915878e604f..c2fe73a7ffbb 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -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);