painter => painterMask: more descriptive name
svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=775826
This commit is contained in:
parent
bd80f41ae2
commit
1403f2d007
@ -350,14 +350,14 @@ void ToolTip::resizeEvent(QResizeEvent *)
|
|||||||
}
|
}
|
||||||
|
|
||||||
QBitmap mask(width(), height());
|
QBitmap mask(width(), height());
|
||||||
QPainter painter(&mask);
|
QPainter painterMask(&mask);
|
||||||
|
|
||||||
mask.fill(Qt::white);
|
mask.fill(Qt::white);
|
||||||
|
|
||||||
painter.setBrush(Qt::black);
|
painterMask.setBrush(Qt::black);
|
||||||
painter.setPen(Qt::black);
|
painterMask.setPen(Qt::black);
|
||||||
|
|
||||||
painter.drawPath(roundedRectangle(mask.rect().adjusted(-1,-1,-1,-1), 10));
|
painterMask.drawPath(roundedRectangle(mask.rect().adjusted(-1,-1,-1,-1), 10));
|
||||||
setMask(mask);
|
setMask(mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user