blob: ab8a4880a218916cc1aa32803d04b1af17f315ae (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "noeditdelegate.h"
NoEditDelegate::NoEditDelegate(QObject *parent)
: QStyledItemDelegate(parent)
{
}
QWidget *NoEditDelegate::createEditor(QWidget*, const QStyleOptionViewItem&, const QModelIndex&) const {
return NULL;
}
|