captchalabel.cpp 230 B

1234567891011
  1. #include "captchalabel.h"
  2. CaptchaLabel::CaptchaLabel(QWidget *parent, Qt::WindowFlags f)
  3. : QLabel(parent, f)
  4. {}
  5. CaptchaLabel::~CaptchaLabel() {}
  6. void CaptchaLabel::mouseReleaseEvent(QMouseEvent *ev) {
  7. emit clicked();
  8. }