* removed paths in include directives * changed cmake to provide necessary header search paths * changed name of version.h to productVersion.h due to name conflict
15 lines
297 B
C++
15 lines
297 B
C++
#include "QtStringListBoxItem.h"
|
|
|
|
#include "QtStringListBox.h"
|
|
|
|
QtStringListBoxItem::QtStringListBoxItem(QtStringListBox* listBox, QListWidgetItem* item, QWidget *parent)
|
|
: QtListBoxItem(item, parent)
|
|
, m_listBox(listBox)
|
|
{
|
|
}
|
|
|
|
QtListBox* QtStringListBoxItem::getListBox()
|
|
{
|
|
return m_listBox;
|
|
}
|