mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 13:41:16 +01:00
16 lines
242 B
C
16 lines
242 B
C
|
#ifndef ODDSPINBOX_H
|
||
|
#define ODDSPINBOX_H
|
||
|
|
||
|
#include <QSpinBox>
|
||
|
|
||
|
class OddSpinBox : public QSpinBox
|
||
|
{
|
||
|
public:
|
||
|
OddSpinBox(QWidget *parent = 0);
|
||
|
|
||
|
protected:
|
||
|
QValidator::State validate(QString &text, int &pos) const;
|
||
|
};
|
||
|
|
||
|
#endif // ODDSPINBOX_H
|