Changeset 562 for AE/Installer/trunk/source/installer.cpp
- Timestamp:
- May 30, 2010, 7:28:34 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AE/Installer/trunk/source/installer.cpp
r559 r562 391 391 const string Category = "Category"; 392 392 const string Creator = "Creator"; 393 package.modStringName = modName;394 393 while (!file.eof()) 395 394 { … … 493 492 } 494 493 } 495 494 package.modStringName = modName; 496 495 return package; 497 496 } … … 1480 1479 rename((path)("../" + thePath), (path)(strTrashDir + thePath)); 1481 1480 #else 1482 remove ((path)("../" + thePath));1481 remove_all((path)("../" + thePath)); 1483 1482 #endif 1484 1483 } … … 1552 1551 catch (exception & ex) 1553 1552 { 1553 wxMessageDialog* DotNetDialogOfDeath = 1554 new wxMessageDialog(TheWindow, ex.what(), "AE Installer Alert", 1555 wxICON_EXCLAMATION , wxDefaultPosition); 1556 1557 DotNetDialogOfDeath->ShowModal(); 1554 1558 setStatusArea("Warning, handled exception: " + (string)ex.what()); 1555 1559 return false;
Note:
See TracChangeset
for help on using the changeset viewer.