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