| 51 | TestCaseEditWidget::~TestCaseEditWidget() { delete ui; } |
| 52 | |
| 53 | void TestCaseEditWidget::changeEvent(QEvent *event) { |
| 54 | if (event->type() == QEvent::LanguageChange) { |
| 55 | TestCase *bak = editTestCase; |
| 56 | setEditTestCase(nullptr, true); |
| 57 | ui->retranslateUi(this); |
| 58 | setEditTestCase(bak, true); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | void TestCaseEditWidget::refreshFileList() { |
| 63 | if (! editTestCase) |
nothing calls this directly
no outgoing calls
no test coverage detected