| 39 | } |
| 40 | |
| 41 | int TextDocumentFormatModel::rowCount(const QModelIndex &parent) const |
| 42 | { |
| 43 | if (!m_format.isValid() || parent.isValid()) |
| 44 | return 0; |
| 45 | return propertyEnum().keyCount(); |
| 46 | } |
| 47 | |
| 48 | int TextDocumentFormatModel::columnCount(const QModelIndex &parent) const |
| 49 | { |
nothing calls this directly
no test coverage detected