| 311 | } |
| 312 | |
| 313 | int CListFileModel::rowCount(const QModelIndex &parent) const |
| 314 | { |
| 315 | //qDebug(log) << Q_FUNC_INFO << parent; |
| 316 | if (parent.isValid()) |
| 317 | return 0; |
| 318 | return m_lstFile.size(); |
| 319 | } |
| 320 | |
| 321 | int CListFileModel::columnCount(const QModelIndex &parent) const |
| 322 | { |
no test coverage detected