| 96 | |
| 97 | private: |
| 98 | void updateDestinationDirLabel() { |
| 99 | QString text = destinationDir; |
| 100 | |
| 101 | // fallback to default |
| 102 | if (text.isEmpty()) |
| 103 | text = integratedAppImagesDestination().absolutePath() + " " + tr("(default)"); |
| 104 | |
| 105 | firstRunDialog->destinationDirLabel->setText(text); |
| 106 | } |
| 107 | |
| 108 | void initUi() { |
| 109 | firstRunDialog = new Ui::FirstRunDialog; |
nothing calls this directly
no test coverage detected