| 125 | } |
| 126 | |
| 127 | void BitstreamAnalysisWidget::backgroundParsingDone(QString error) |
| 128 | { |
| 129 | if (error.isEmpty()) |
| 130 | this->ui.parsingStatusText->setText("Parsing done."); |
| 131 | else |
| 132 | this->ui.parsingStatusText->setText("Error parsing the file: " + error); |
| 133 | this->updateParsingStatusText(100); |
| 134 | } |
| 135 | |
| 136 | void BitstreamAnalysisWidget::showOnlyStreamComboBoxIndexChanged(int index) |
| 137 | { |
nothing calls this directly
no test coverage detected