From 7049328fb2d656d8454d4f704ad75d057e766c0b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 20 Apr 2021 21:07:42 +0200 Subject: loplugin:stringadd replace OUStringLiteral temporaries with OUString::Concat Change-Id: I656f06a74d9f0180ae460264563d6a935c7d2c60 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114377 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sdext/source/pdfimport/test/pdfunzip.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sdext') 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 ); -- cgit