Kaydet (Commit) a209f24d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringconcat

Change-Id: Idbc179459e574fa9bf2537cb215a012c105e0913
üst 35c7ad16
...@@ -1004,7 +1004,7 @@ bool BitmapScaleSuper::filter(Bitmap& rBitmap) ...@@ -1004,7 +1004,7 @@ bool BitmapScaleSuper::filter(Bitmap& rBitmap)
assert( nThreads > 0 ); assert( nThreads > 0 );
sal_uInt32 nStrips = ((nEndY - nStartY) + SCALE_THREAD_STRIP - 1) / SCALE_THREAD_STRIP; sal_uInt32 nStrips = ((nEndY - nStartY) + SCALE_THREAD_STRIP - 1) / SCALE_THREAD_STRIP;
sal_uInt32 nStripsPerThread = nStrips / nThreads; 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; long nStripY = nStartY;
for ( sal_uInt32 t = 0; t < nThreads - 1; t++ ) for ( sal_uInt32 t = 0; t < nThreads - 1; t++ )
{ {
......
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