| 351 | |
| 352 | |
| 353 | bool DecoderStack::list_row_title(int row, QString &title) |
| 354 | { |
| 355 | for (auto i = _rows.begin();i != _rows.end(); i++) { |
| 356 | auto iter = _rows_lshow.find((*i).first); |
| 357 | if (iter != _rows_lshow.end() && (*iter).second) { |
| 358 | if (row-- == 0) { |
| 359 | title = (*i).first.title(); |
| 360 | return 1; |
| 361 | } |
| 362 | } |
| 363 | } |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | void DecoderStack::clear() |
| 368 | { |
no test coverage detected