On Tue, Mar 04, 2003 at 04:35:40PM +0100, Carsten Pfeiffer wrote: > CVS commit by pfeiffer: > > re-applied click handling fix > > > M +12 -0 qcheckbox.cpp 1.50 > M +1 -1 qcheckbox.h 1.49 > M +9 -1 qradiobutton.cpp 1.50 [...] > --- qt-copy/src/widgets/qcheckbox.h #1.48:1.49 > @@ -73,5 +73,5 @@ protected: > void drawButtonLabel( QPainter * ); > void updateMask(); > - > + virtual bool hitButton( const QPoint &pos ) const; > private: // Disabled copy constructor and operator= > #if defined(Q_DISABLE_COPY) I'm not sure if it's a good idea to have that patch applied to qt-copy, because it makes it incompatible to the official Qt release (in fact to all 3.1.x releases) (applications compiled against qt-copy don't work with qt-3.2.1 if they make use of hitButton) . Simon