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