init
This commit is contained in:
19
customcontrols/dmspinbox.h
Normal file
19
customcontrols/dmspinbox.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef DMSPINBOX_H
|
||||
#define DMSPINBOX_H
|
||||
|
||||
|
||||
#include <QSpinBox>
|
||||
|
||||
class DMSpinBox : public QSpinBox {
|
||||
Q_OBJECT
|
||||
public:
|
||||
DMSpinBox(QWidget *parent = nullptr);
|
||||
|
||||
private:
|
||||
#ifdef QT_DEBUG
|
||||
bool eventFilter(QObject *watched, QEvent *event) override;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
#endif // DMSPINBOX_H
|
||||
Reference in New Issue
Block a user