--- AE/Installer/trunk/source/main_window.cpp 2010/03/24 07:12:25 503 +++ AE/Installer/trunk/source/main_window.cpp 2010/06/01 13:13:59 565 @@ -50,7 +50,7 @@ vector globalInstalledMods; vector globalPackages; // Variable declarations #ifdef WIN32 -bool splitInstances = true; +bool splitInstances = false; string strImportOption = "-import:nosep"; string strOniSplit = "Onisplit.exe"; #else @@ -288,7 +288,7 @@ void MainWindow::CreateControls() StatusArea = new wxStatusBar( itemFrame1, ID_STATUSBAR, 0 ); StatusArea->SetName(_T("StatusArea")); StatusArea->SetFieldsCount(1); - string versionText = "AE Installer v" + (string)INSTALLER_VERSION; + string versionText = "AE Installer v" + gInstallerVersion; StatusArea->SetStatusText(versionText.c_str(), 0); itemBoxSizer2->Add(StatusArea, 0, wxGROW|wxALL, 0); @@ -624,7 +624,6 @@ void MainWindow::OnAboutClick( wxCommand { ////@begin wxEVT_COMMAND_MENU_SELECTED event handler for wxID_ABOUT in MainWindow. // Before editing this code, remove the block markers. - // TODO: Make About window work again! About* window = new About(this); window->ShowModal(); window->Destroy(); @@ -676,7 +675,6 @@ void MainWindow::OnRefreshButtonClick( w * wxEVT_COMMAND_MENU_SELECTED event handler for wxID_LOAD */ -// TODO: Make refreshMods actually refresh the list in the window of available mods so we can see any new package info and deleted mods are removed from the list void MainWindow::refreshMods (vector s) { Mods_CheckboxList->Clear();