[quote author="Andre" date="1325659958"]Could you post your whole implementation of your paintEvent()?[/quote]
this is my implementation of paintevent
@
void checkbox::paintEvent (QPaintEvent *e)
{
QCheckBox::paintEvent (e);
QPainter paint(this);
paint.drawPixmap (QRect(0,0,10,10), pixmap, QRect(0,0,10,10));
}
@
Here i am getting both the image and the default widget as output.