| 20 | #include <QStandardItemModel> |
| 21 | |
| 22 | EntryDelegate::EntryDelegate(KDGantt::ConstraintModel *constraintModel, QObject *parent) |
| 23 | : QItemDelegate(parent) |
| 24 | { |
| 25 | this->constraintModel = constraintModel; |
| 26 | } |
| 27 | |
| 28 | bool EntryDelegate::editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option, const QModelIndex &index) |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected