diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-02-26 14:20:06 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-02-26 14:20:25 +0200 |
commit | 13330bd6e33d1ca3b470740b5360e2756f06a7a4 (patch) | |
tree | 57268a83646a336064b3041b30fb1939d4bf4504 /sc | |
parent | 7cbf638498f9fb07e9329d59a934411be7cd444a (diff) |
WaE: int/SCROW format mismatch
Change-Id: If33637df7f175f3f4248093034849177da681117
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/filters-test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx index 19ad9fb0568e..4393386098e5 100644 --- a/sc/qa/unit/filters-test.cxx +++ b/sc/qa/unit/filters-test.cxx @@ -357,11 +357,11 @@ void impl_testLegacyCellAnchoredRotatedShape( ScDocument* pDoc, Rectangle& aRect ScDrawObjData* pData = ScDrawLayer::GetObjData( pObj ); - printf("expected startrow %d actual %d\n", aAnchor.maStart.Row(), pData->maStart.Row() ); + printf("expected startrow %" SAL_PRIdINT32 " actual %" SAL_PRIdINT32 "\n", aAnchor.maStart.Row(), pData->maStart.Row() ); CPPUNIT_ASSERT_EQUAL( aAnchor.maStart.Row(), pData->maStart.Row() ); printf("expected startcol %d actual %d\n", aAnchor.maStart.Col(), pData->maStart.Col() ); CPPUNIT_ASSERT_EQUAL( aAnchor.maStart.Col(), pData->maStart.Col() ); - printf("expected endrow %d actual %d\n", aAnchor.maEnd.Row(), pData->maEnd.Row() ); + printf("expected endrow %" SAL_PRIdINT32 " actual %" SAL_PRIdINT32 "\n", aAnchor.maEnd.Row(), pData->maEnd.Row() ); CPPUNIT_ASSERT_EQUAL( aAnchor.maEnd.Row(), pData->maEnd.Row() ); printf("expected endcol %d actual %d\n", aAnchor.maEnd.Col(), pData->maEnd.Col() ); CPPUNIT_ASSERT_EQUAL( aAnchor.maEnd.Col(), pData->maEnd.Col() ); |