Ignore:
Timestamp:
May 30, 2010, 7:28:34 PM (14 years ago)
Author:
gumby
Message:

really really depreciated ModString
Fixed bug with detelist on windows systems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • AE/Installer/trunk/source/installer.cpp

    r559 r562  
    391391        const string Category = "Category";
    392392        const string Creator = "Creator";
    393         package.modStringName = modName;
    394393        while (!file.eof())
    395394        {
     
    493492                }
    494493        }
    495 
     494        package.modStringName = modName;
    496495        return package;
    497496}
     
    14801479                        rename((path)("../" + thePath), (path)(strTrashDir + thePath));
    14811480#else
    1482                         remove((path)("../" + thePath));
     1481                        remove_all((path)("../" + thePath));
    14831482#endif
    14841483                }
     
    15521551        catch (exception & ex)
    15531552        {
     1553                wxMessageDialog* DotNetDialogOfDeath =
     1554                        new wxMessageDialog(TheWindow, ex.what(), "AE Installer Alert",
     1555                                                                                                                                 wxICON_EXCLAMATION     , wxDefaultPosition);
     1556               
     1557                DotNetDialogOfDeath->ShowModal();
    15541558                setStatusArea("Warning, handled exception: " + (string)ex.what());
    15551559                return false;
Note: See TracChangeset for help on using the changeset viewer.