15 lines
217 B
C++
15 lines
217 B
C++
|
|
#include "EDoubleSpinBox.h"
|
|||
|
|
|
|||
|
|
namespace pst
|
|||
|
|
{
|
|||
|
|
EDoubleSpinBox::EDoubleSpinBox(QWidget* parent)
|
|||
|
|
: QDoubleSpinBox(parent)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void EDoubleSpinBox::wheelEvent(QWheelEvent* event)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|