removed unnecessary block braces

svn path=/trunk/KDE/kdebase/workspace/; revision=1033971
icc-effect-5.14.5
Hugo Pereira Da Costa 2009-10-11 17:13:50 +00:00
parent 3d531bf4b2
commit 09364cdac0
1 changed files with 7 additions and 9 deletions

View File

@ -242,16 +242,14 @@ namespace Oxygen
painter.setRenderHints(QPainter::Antialiasing);
qreal width( 1.2 );
{
painter.setBrush(Qt::NoBrush);
painter.setPen(QPen( helper_.calcLightColor( bt ), width, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
drawIcon(&painter, palette, type_);
painter.setBrush(Qt::NoBrush);
painter.setPen(QPen( helper_.calcLightColor( bt ), width, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
drawIcon(&painter, palette, type_);
painter.translate(0,-1.5);
painter.setBrush(Qt::NoBrush);
painter.setPen(QPen(color, width, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
drawIcon(&painter, palette, type_);
}
painter.translate(0,-1.5);
painter.setBrush(Qt::NoBrush);
painter.setPen(QPen(color, width, Qt::SolidLine, Qt::RoundCap, Qt::RoundJoin));
drawIcon(&painter, palette, type_);
}