Changeset 506 for AE/Installer/trunk/source/aeinstallerapp.cpp
- Timestamp:
- Apr 5, 2010, 4:11:45 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/aeinstallerapp.cpp
r504 r506 115 115 if (updateStatus) // updateStatus was set when MainWindow::CreateControls() was called during initialization of the window 116 116 { 117 string updateMsg = "An update for the Anniversary Edition is available.\n" ; // for some reason we can't set the initial value while using the '+' operator...118 updateMsg = updateMsg + "Do you wish to update to Edition version " + updateAE.AEVersion + "?\n" +119 117 string updateMsg = "An update for the Anniversary Edition is available.\n" 118 "Do you wish to update to Edition version " + updateAE.AEVersion + "?\n" 119 "(Current version is " + currentAE.AEVersion + ")\n"; // ...so we tack the rest on in a second command 120 120 wxMessageDialog* updateNotification; 121 121 … … 140 140 ProcessAEUpdate(¤tAE, &updateAE, &installerJustUpdated); 141 141 break; 142 case UPDATE_ THIRD_PARTY: // there's an update with no globalization or Installer strings attached142 case UPDATE_PKG_AVAIL: // there's an update with no globalization or Installer strings attached 143 143 updateMsg = (string)"One or more third party update(s) for Anniversary Edition package(s) are available.\n" + 144 144 (string)"Please note that the AE team assumes no responsibility for the content of third party mods" + … … 147 147 updateNotification = new wxMessageDialog(TheWindow, updateMsg.c_str(), "AE Installer Alert", wxYES_NO | wxICON_EXCLAMATION, wxDefaultPosition); 148 148 if (updateNotification->ShowModal() == wxID_YES) 149 Process ThirdPartyUpdates();149 ProcessPackageUpdates("../updates", "./packages"); 150 150 break; 151 151 case UPDATE_GLOB_AVAIL: // there's an update with globalization strings attached
Note:
See TracChangeset
for help on using the changeset viewer.