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