| 73 | } |
| 74 | |
| 75 | QVariant LanguageStylesModel::headerData(int section, Qt::Orientation orientation, int role) const |
| 76 | { |
| 77 | if (role == Qt::DisplayRole) { |
| 78 | if (orientation == Qt::Horizontal) { |
| 79 | return columns[section]; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | return QVariant(); |
| 84 | } |
| 85 | |
| 86 | int LanguageStylesModel::rowCount(const QModelIndex &parent) const |
| 87 | { |
nothing calls this directly
no outgoing calls
no test coverage detected