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