summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-02-20 03:30:07 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-02-20 04:26:48 +0100
commitfa395e689e22d6bc49785bdf688057546ea27f62 (patch)
treec3cef224e2b73160fc08eb8ba83263dbf1746864 /vcl
parentcfe7e9d06f24c8d3b758e996455c5787771a5a45 (diff)
more stylistic cleanup
Change-Id: Ia7aea86d0bf787b851a5ecbae5b697436e1192e5
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/bitmap3.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/gdi/bitmap3.cxx b/vcl/source/gdi/bitmap3.cxx
index 1a4ec18233ad..d915fe504000 100644
--- a/vcl/source/gdi/bitmap3.cxx
+++ b/vcl/source/gdi/bitmap3.cxx
@@ -1311,10 +1311,10 @@ sal_Bool Bitmap::ImplScaleSuper(
if( pAcc && pWAcc )
{
- long nW = pAcc->Width() ;
- long nH = pAcc->Height() ;
- const double fRevScaleX = ( nDstW > 1L ) ? ( (double) ( nW - 1 ) / ( nDstW - 1 ) ) : 0.0;
- const double fRevScaleY = ( nDstH > 1L ) ? ( (double) ( nH - 1 ) / ( nDstH - 1 ) ) : 0.0;
+ const long nW = pAcc->Width() ;
+ const long nH = pAcc->Height() ;
+ const double fRevScaleX = ( nDstW > 1L ) ? ( (double) ( nW - 1 ) / ( nDstW - 1 ) ) : 0.0;
+ const double fRevScaleY = ( nDstH > 1L ) ? ( (double) ( nH - 1 ) / ( nDstH - 1 ) ) : 0.0;
// create horizontal mapping table
for( long nX = 0L, nTempX = nW - 1L, nTemp = nW - 2L; nX < nDstW; nX++ )