Files
newspark110/customcontrols/dmcheckbox.cpp
Chenwenxuan edac2715f0 init
2024-03-06 14:54:30 +08:00

14 lines
261 B
C++

#include "dmcheckbox.h"
#include<QDebug>
DMCheckBox::DMCheckBox(QWidget *parent):QCheckBox(parent)
{
setFocusPolicy(Qt::TabFocus);
}
DMCheckBox::~DMCheckBox() {
qDebug() << "-----DMCheckBox destroying";
qDebug() << "-----DMCheckBox destroyed";
}