Kaydet (Commit) 561ec646 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

WaE: C++11 requires a space between literal and identifier

Change-Id: I3351298e338315881bc8fa344849f00ee4438059
üst 21a80745
......@@ -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);
}
......
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