| 23 | } |
| 24 | |
| 25 | CodeDelegate::CodeDelegate(int lineNumberRole, int highlightRole, int syntaxHighlightRole, QObject* parent) |
| 26 | : QStyledItemDelegate(parent) |
| 27 | , m_lineNumberRole(lineNumberRole) |
| 28 | , m_highlightRole(highlightRole) |
| 29 | , m_syntaxHighlightRole(syntaxHighlightRole) |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | CodeDelegate::~CodeDelegate() = default; |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected