| 20 | #include "MacroListModel.h" |
| 21 | |
| 22 | MacroListModel::MacroListModel(QObject *parent, MacroManager *mm) : |
| 23 | QAbstractListModel(parent), |
| 24 | macroManager(mm) |
| 25 | { |
| 26 | } |
| 27 | |
| 28 | int MacroListModel::rowCount(const QModelIndex &parent) const |
| 29 | { |
nothing calls this directly
no outgoing calls
no test coverage detected