14 lines
261 B
C++
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";
|
|
}
|