src/hbcore/gui/hbfadeitem.cpp
branchGCC_SURGE
changeset 15 f378acbc9cfb
parent 7 923ff622b8b9
child 21 4633027730f5
--- a/src/hbcore/gui/hbfadeitem.cpp	Thu Jul 15 14:03:49 2010 +0100
+++ b/src/hbcore/gui/hbfadeitem.cpp	Thu Jul 22 16:36:53 2010 +0100
@@ -41,8 +41,8 @@
 {
     Q_DECLARE_PUBLIC(HbFadeItem)
 
-    public:
-    HbFadeItemPrivate( );
+public:
+    HbFadeItemPrivate();
     virtual ~HbFadeItemPrivate();
     void init();
 
@@ -67,7 +67,7 @@
 {
     Q_Q(HbFadeItem);
 
-    q->setBackgroundItem(HbStyle::P_Fade_background);
+    setBackgroundItem(HbStyle::P_Fade_background);
 
     q->setAcceptHoverEvents(true);
     // This is needed to be able to block moving the focus to items behind background item by
@@ -75,7 +75,7 @@
     q->setFlag(QGraphicsItem::ItemIsFocusable);
 }
 
-HbFadeItem::HbFadeItem( QGraphicsItem *parent ) : HbWidget(*new HbFadeItemPrivate, parent)
+HbFadeItem::HbFadeItem(QGraphicsItem *parent) : HbWidget(*new HbFadeItemPrivate, parent)
 {
     Q_D(HbFadeItem);
     d->q_ptr = this;
@@ -92,12 +92,12 @@
 QRectF HbFadeItem::boundingRect() const
 {
     Q_D(const HbFadeItem);
-    if(!d->mRect.isValid()){
+    if (!d->mRect.isValid()) {
         // set size so that it is big enough
         // to cover the screen both landscape and portrait mode
         const QSizeF screenSize = HbDeviceProfile::profile(this).logicalSize();
         qreal dim = qMax(screenSize.width(), screenSize.height());
-        d->mRect.adjust(0,0,dim,dim);
+        d->mRect.adjust(0, 0, dim, dim);
     }
     return d->mRect;
 }