| 53 | return 100; |
| 54 | } |
| 55 | int DecoderModel::columnCount(const QModelIndex & /* parent */) const |
| 56 | { |
| 57 | if (_decoder_stack) |
| 58 | return _decoder_stack->list_rows_size(); |
| 59 | else |
| 60 | return 1; |
| 61 | } |
| 62 | |
| 63 | QVariant DecoderModel::data(const QModelIndex &index, int role) const |
| 64 | { |
no test coverage detected