300 |
|
|
301 |
|
for(int j = 0; j < GDFPaths.size(); j++) { |
302 |
|
logfile << "\tReimporting " << GDFPaths[j].filename() << ".oni\n"; |
303 |
< |
setStatusArea("Step" + lexical_cast<std::string>(parts_done + 1) + "/" + lexical_cast<std::string>(total_steps) + ": reimporting " + GDFPaths[j].filename() ); |
303 |
> |
setStatusArea("Step " + lexical_cast<std::string>(parts_done + 1) + "/" + lexical_cast<std::string>(total_steps) + ": reimporting " + GDFPaths[j].filename() ); |
304 |
|
system((strOniSplit + " " + strImportOption + " " + GDFPaths[j].string() + " " + VanillaPaths[j].string()).c_str()); |
305 |
|
parts_done++; |
306 |
|
setProgressBar( (int)(1000 * (float)(parts_done) / (float)(total_steps) )); |
1279 |
|
|
1280 |
|
if (!event.GetInt() ) { |
1281 |
|
OptionsPanel->Hide(); |
1282 |
< |
MainWindow::SetSize(MainWindow::GetRect().GetWidth(), MainWindow::GetRect().GetHeight()-OptionsPanel->GetRect().GetHeight());} |
1282 |
> |
this->SetSize(this->GetRect().GetWidth(), this->GetRect().GetHeight()-OptionsPanel->GetRect().GetHeight());} |
1283 |
|
else { |
1284 |
< |
//Uncomment this when we release, it gets annoying if you are testing globalization a lot ;) |
1285 |
< |
//wxMessageDialog* YesNoDialog = new wxMessageDialog(this, "WARNING: These options are for advanced users only, use with caution.", "AE Installer Alert", wxOK | wxICON_EXCLAMATION , wxDefaultPosition); |
1286 |
< |
//YesNoDialog->ShowModal(); |
1284 |
> |
// Uncomment this when we release, it gets annoying if you are testing globalization a lot ;) |
1285 |
> |
wxMessageDialog* YesNoDialog = new wxMessageDialog(this, "WARNING: These options are for advanced users only, use with caution.", "AE Installer Alert", wxOK | wxICON_EXCLAMATION , wxDefaultPosition); |
1286 |
> |
YesNoDialog->ShowModal(); |
1287 |
|
OptionsPanel->Show(); |
1288 |
< |
MainWindow::SetSize(MainWindow::GetRect().GetWidth(), MainWindow::GetRect().GetHeight()+OptionsPanel->GetRect().GetHeight()); |
1288 |
> |
this->SetSize(this->GetRect().GetWidth(), this->GetRect().GetHeight()+OptionsPanel->GetRect().GetHeight()); |
1289 |
|
} |
1290 |
+ |
|
1291 |
|
} |
1292 |
|
|
1293 |
|
|