| 26 | } |
| 27 | |
| 28 | int MacroListModel::rowCount(const QModelIndex &parent) const |
| 29 | { |
| 30 | if (parent.isValid()) |
| 31 | return 0; |
| 32 | |
| 33 | return macroManager->availableMacros().size(); |
| 34 | } |
| 35 | |
| 36 | QVariant MacroListModel::data(const QModelIndex &index, int role) const |
| 37 | { |