| 46 | } |
| 47 | |
| 48 | int DecoderModel::rowCount(const QModelIndex & /* parent */) const |
| 49 | { |
| 50 | if (_decoder_stack) |
| 51 | return _decoder_stack->list_annotation_size(); |
| 52 | else |
| 53 | return 100; |
| 54 | } |
| 55 | int DecoderModel::columnCount(const QModelIndex & /* parent */) const |
| 56 | { |
| 57 | if (_decoder_stack) |
no test coverage detected