8 lines
159 B
C++
8 lines
159 B
C++
|
#include "qpatchedcombobox.h"
|
||
|
|
||
|
QPatchedComboBox::QPatchedComboBox(QWidget *parent):
|
||
|
QComboBox(parent)
|
||
|
{
|
||
|
setView(new QPatchedComboBoxListView(this));
|
||
|
}
|