diff options
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/pdfimport/test/pdfunzip.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/pdfimport/test/pdfunzip.cxx b/sdext/source/pdfimport/test/pdfunzip.cxx index a4d93c611d7d..d206c981f356 100644 --- a/sdext/source/pdfimport/test/pdfunzip.cxx +++ b/sdext/source/pdfimport/test/pdfunzip.cxx @@ -270,7 +270,7 @@ static int write_addStreamArray( const char* pOutFile, PDFArray* pStreams, PDFFi if( pObject ) { OString aOutStream = pOutFile + - OStringLiteral("_stream_") + + OString::Concat("_stream_") + OString::number( sal_Int32(pStreamRef->m_nNumber) ) + "_" + OString::number( sal_Int32(pStreamRef->m_nGeneration) ); @@ -413,7 +413,7 @@ static int write_objects( const char* i_pInFile, const char* i_pOutFile, PDFFile } OString aOutStream = i_pOutFile + - OStringLiteral("_stream_") + + OString::Concat("_stream_") + OString::number( nObject ) + "_" + OString::number( nGeneration ); |