init
This commit is contained in:
14
customcontrols/dmcombobox.cpp
Normal file
14
customcontrols/dmcombobox.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#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";
|
||||
}
|
||||
Reference in New Issue
Block a user