15 lines
340 B
C++
15 lines
340 B
C++
#include "dmcombobox.h"
|
|
#include<QDebug>
|
|
#include "eventfilterwheel.h"
|
|
|
|
DMComboBox::DMComboBox(QWidget *parent) :
|
|
QComboBox(parent) {
|
|
installEventFilter(new EventFilterWheel());
|
|
setFocusPolicy(Qt::TabFocus);
|
|
}
|
|
|
|
DMComboBox::~DMComboBox() {
|
|
qDebug() << "-----DMComboBox destroying";
|
|
qDebug() << "-----DMComboBox destroyed";
|
|
}
|