summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-01-31 08:54:53 +0200
committerTor Lillqvist <tml@iki.fi>2013-01-31 08:54:53 +0200
commit561ec646ff08bf455720c5549a73fd54cdddeaa7 (patch)
treebf51bfbb3187cdc1323e2e6b5283a7f8d58bff32 /sc
parent21a807456e4e7f141bb0165b43323c2202c0273c (diff)
WaE: C++11 requires a space between literal and identifier
Change-Id: I3351298e338315881bc8fa344849f00ee4438059
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/unit/subsequent_export-test.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/qa/unit/subsequent_export-test.cxx b/sc/qa/unit/subsequent_export-test.cxx
index d39eb1193347..220877dc2c3e 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -363,7 +363,7 @@ void ScExportTest::testMiscRowHeightExport()
int nExpectedHeight = aTestValues[ index ].pData[ i ].nExpectedHeight;
for ( ; nRow <= nEndRow; ++nRow )
{
- printf("\t checking row %"SAL_PRIdINT32" for height %d\n", nRow, nExpectedHeight );
+ printf("\t checking row %" SAL_PRIdINT32 " for height %d\n", nRow, nExpectedHeight );
int nHeight = sc::TwipsToHMM( pDoc->GetRowHeight(nRow, nTab, false) );
CPPUNIT_ASSERT_EQUAL(nExpectedHeight, nHeight);
}