| 74 | } |
| 75 | |
| 76 | QString Row::title_id() const |
| 77 | { |
| 78 | if (_decoder && _decoder->id && _row && _row->desc) |
| 79 | return QString("%1: %2") |
| 80 | .arg(QString::fromUtf8(_decoder->id)) |
| 81 | .arg(QString::fromUtf8(_row->desc)); |
| 82 | |
| 83 | if (_decoder && _decoder->id) |
| 84 | return QString::fromUtf8(_decoder->id); |
| 85 | |
| 86 | if (_row && _row->desc) |
| 87 | return QString::fromUtf8(_row->desc); |
| 88 | |
| 89 | return QString(); |
| 90 | } |
| 91 | |
| 92 | bool Row::operator<(const Row &other) const |
| 93 | { |
no outgoing calls
no test coverage detected