| 73 | } |
| 74 | |
| 75 | void DecoderOptionsDlg::load_options(view::DecodeTrace *trace) |
| 76 | { |
| 77 | assert(trace); |
| 78 | _trace = trace; |
| 79 | |
| 80 | const char *dec_id = trace->decoder()->get_root_decoder_id(); |
| 81 | |
| 82 | if (LangResource::Instance()->is_new_decoder(dec_id)) |
| 83 | LangResource::Instance()->reload_dynamic(); |
| 84 | |
| 85 | load_options_view(); |
| 86 | |
| 87 | LangResource::Instance()->release_dynamic(); |
| 88 | } |
| 89 | |
| 90 | void DecoderOptionsDlg::load_options_view() |
| 91 | { |
no test coverage detected