summaryrefslogtreecommitdiff
path: root/src/noeditdelegate.cpp
blob: 671fa42706ec558d266641946ad10ee8107fc6ca (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 nullptr;
}