| 150 | } |
| 151 | |
| 152 | QList<BasePage *> NewInstanceDialog::getPages() |
| 153 | { |
| 154 | QList<BasePage *> pages; |
| 155 | |
| 156 | importPage = new ImportPage(this); |
| 157 | |
| 158 | pages.append(new VanillaPage(this)); |
| 159 | pages.append(importPage); |
| 160 | pages.append(new AtlPage(this)); |
| 161 | if (APPLICATION->capabilities() & Application::SupportsFlame) |
| 162 | pages.append(new FlamePage(this)); |
| 163 | pages.append(new FtbPage(this)); |
| 164 | pages.append(new LegacyFTB::Page(this)); |
| 165 | pages.append(new ModrinthPage(this)); |
| 166 | pages.append(new TechnicPage(this)); |
| 167 | |
| 168 | return pages; |
| 169 | } |
| 170 | |
| 171 | QString NewInstanceDialog::dialogTitle() |
| 172 | { |
no test coverage detected