If I have a private QPainter :

QPainter the_painter;

If I use at paintEvent :
void AnalogClock:: paintEvent(QPaintEvent *)

{
the_painter(this);
....
I have :
error: no match for call to '(QPainter) (AnalogClock* const)'

I dont understand what is happen.
Any idea?