oops. Missing parenthesis

svn path=/trunk/KDE/kdebase/workspace/; revision=1025936
icc-effect-5.14.5
Hugo Pereira Da Costa 2009-09-20 06:54:09 +00:00
parent 38a10045bc
commit 81174a9301
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ namespace Oxygen
// note: special tricks are needed to cope with some rounding issues when size is not an integer.
p.setBrush( lg );
int sizeInt( size );
p.drawEllipse( QRectF( sizeInt-4, sizeInt-4, 8+2*(size-sizeInt), 8+2*(size-sizeInt) );
p.drawEllipse( QRectF( sizeInt-4, sizeInt-4, 8+2*(size-sizeInt), 8+2*(size-sizeInt) ) );
p.end();
return shadow;