| 50 |
|
vector<ModPackage> globalPackages; |
| 51 |
|
// Variable declarations |
| 52 |
|
#ifdef WIN32 |
| 53 |
< |
bool splitInstances = true; |
| 53 |
> |
bool splitInstances = false; |
| 54 |
|
string strImportOption = "-import:nosep"; |
| 55 |
|
string strOniSplit = "Onisplit.exe"; |
| 56 |
|
#else |
| 288 |
|
StatusArea = new wxStatusBar( itemFrame1, ID_STATUSBAR, 0 ); |
| 289 |
|
StatusArea->SetName(_T("StatusArea")); |
| 290 |
|
StatusArea->SetFieldsCount(1); |
| 291 |
< |
string versionText = "AE Installer v" + (string)INSTALLER_VERSION; |
| 291 |
> |
string versionText = "AE Installer v" + gInstallerVersion; |
| 292 |
|
StatusArea->SetStatusText(versionText.c_str(), 0); |
| 293 |
|
itemBoxSizer2->Add(StatusArea, 0, wxGROW|wxALL, 0); |
| 294 |
|
|