| 78 | }; |
| 79 | |
| 80 | static InstallLoaderPage* pageCast(BasePage* page) |
| 81 | { |
| 82 | auto result = dynamic_cast<InstallLoaderPage*>(page); |
| 83 | Q_ASSERT(result != nullptr); |
| 84 | return result; |
| 85 | } |
| 86 | |
| 87 | InstallLoaderDialog::InstallLoaderDialog(PackProfile* profile, const QString& uid, QWidget* parent) |
| 88 | : QDialog(parent), profile(profile), container(new PageContainer(this, QString(), this)), buttons(new QDialogButtonBox(this)) |
no outgoing calls
no test coverage detected