summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-08-17 04:17:21 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-08-17 05:15:29 +0200
commitfceb7534bfc9cece328c1f7c310ecdd0f707ba15 (patch)
tree982d1b1afcaaec9ecbd0ecc2e586c19e5898680e /sc
parent1f1dfcdc91f55c87bbd80dbca09209c547907746 (diff)
fix unit test after size_t change
Change-Id: I511fd2c11fc1506c0cf7532347cca7933ed8ed5a
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/unit/ucalc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/ucalc.cxx b/sc/qa/unit/ucalc.cxx
index d9097bf250a2..f06c2fc36769 100644
--- a/sc/qa/unit/ucalc.cxx
+++ b/sc/qa/unit/ucalc.cxx
@@ -3054,7 +3054,7 @@ void Test::testGraphicsOnSheetMove()
pPage = pDrawLayer->GetPage(1);
CPPUNIT_ASSERT_MESSAGE("No page instance for the 2nd sheet.", pPage);
- CPPUNIT_ASSERT_EQUAL_MESSAGE("2nd sheet shouldn't have any object.", pPage->GetObjCount(), static_cast<sal_uIntPtr>(0));
+ CPPUNIT_ASSERT_EQUAL_MESSAGE("2nd sheet shouldn't have any object.", pPage->GetObjCount(), static_cast<size_t>(0));
// Insert a new sheet at left-end, and make sure the object has moved to
// the 2nd page.