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