equal
deleted
inserted
replaced
60 { |
60 { |
61 const_cast<BlurEffect *>(this)->adjustForItem(); |
61 const_cast<BlurEffect *>(this)->adjustForItem(); |
62 return QGraphicsBlurEffect::boundingRect(); |
62 return QGraphicsBlurEffect::boundingRect(); |
63 } |
63 } |
64 |
64 |
65 void BlurEffect::draw(QPainter *painter, QGraphicsEffectSource *source) |
65 void BlurEffect::draw(QPainter *painter) |
66 { |
66 { |
67 adjustForItem(); |
67 adjustForItem(); |
68 QGraphicsBlurEffect::draw(painter, source); |
68 QGraphicsBlurEffect::draw(painter); |
69 } |
69 } |