comac_desk_app/PostProcessing/EDoubleSpinBox.cpp

15 lines
217 B
C++
Raw Normal View History

2024-11-21 11:50:43 +08:00
#include "EDoubleSpinBox.h"
namespace pst
{
EDoubleSpinBox::EDoubleSpinBox(QWidget* parent)
: QDoubleSpinBox(parent)
{
}
void EDoubleSpinBox::wheelEvent(QWheelEvent* event)
{
}
}