| 84 | // } |
| 85 | |
| 86 | int MessageEventModel::rowCount(const QModelIndex& parent) const |
| 87 | { |
| 88 | if( parent.isValid() ) |
| 89 | return 0; |
| 90 | return m_currentMessages.count(); |
| 91 | } |
| 92 | |
| 93 | QVariant MessageEventModel::data(const QModelIndex& index, int role) const |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected