diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-12 14:19:28 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-12 14:19:28 +0100 |
commit | a209f24dff825bc2055fead79b7aff1ce3e04070 (patch) | |
tree | 174a44109381d8c742ff8d4268e1c206fa4725d5 /vcl/source/bitmap | |
parent | 35c7ad165b7746d1fde8bff98285c12d49ea6714 (diff) |
loplugin:stringconcat
Change-Id: Idbc179459e574fa9bf2537cb215a012c105e0913
Diffstat (limited to 'vcl/source/bitmap')
-rw-r--r-- | vcl/source/bitmap/bitmapscalesuper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/bitmap/bitmapscalesuper.cxx b/vcl/source/bitmap/bitmapscalesuper.cxx index f2e09294a9f0..b2b8fba03cf8 100644 --- a/vcl/source/bitmap/bitmapscalesuper.cxx +++ b/vcl/source/bitmap/bitmapscalesuper.cxx @@ -1004,7 +1004,7 @@ bool BitmapScaleSuper::filter(Bitmap& rBitmap) assert( nThreads > 0 ); sal_uInt32 nStrips = ((nEndY - nStartY) + SCALE_THREAD_STRIP - 1) / SCALE_THREAD_STRIP; sal_uInt32 nStripsPerThread = nStrips / nThreads; - SAL_INFO("vcl.gdi", "Scale in " << nStrips << " strips " << nStripsPerThread << " per thread" << " we have " << nThreads << " CPU threads "); + SAL_INFO("vcl.gdi", "Scale in " << nStrips << " strips " << nStripsPerThread << " per thread we have " << nThreads << " CPU threads "); long nStripY = nStartY; for ( sal_uInt32 t = 0; t < nThreads - 1; t++ ) { |