ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/AE/Installer/trunk/source/main_window.cpp
(Generate patch)

Comparing AE/Installer/trunk/source/main_window.cpp (file contents):
Revision 357 by gumby, Fri Jun 19 21:32:17 2009 UTC vs.
Revision 358 by gumby, Fri Jun 19 22:25:08 2009 UTC

# Line 300 | Line 300 | int globalizeData(void)
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) ));
# Line 1279 | Line 1279 | void MainWindow::OnOptionsClick( wxComma
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  

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)