| 84 | } |
| 85 | |
| 86 | int LanguageStylesModel::rowCount(const QModelIndex &parent) const |
| 87 | { |
| 88 | if (parent.isValid()) |
| 89 | return 0; |
| 90 | |
| 91 | return editor->namedStyles(); |
| 92 | } |
| 93 | |
| 94 | int LanguageStylesModel::columnCount(const QModelIndex &parent) const |
| 95 | { |
nothing calls this directly
no outgoing calls
no test coverage detected