| 26 | } |
| 27 | |
| 28 | SourceCodeModel::SourceCodeModel(KSyntaxHighlighting::Repository* repository, QObject* parent) |
| 29 | : QAbstractTableModel(parent) |
| 30 | , m_highlightedText(repository) |
| 31 | { |
| 32 | qRegisterMetaType<QTextLine>(); |
| 33 | } |
| 34 | |
| 35 | SourceCodeModel::~SourceCodeModel() = default; |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected