Ignore:
Timestamp:
2000-09-14T02:01:44+12:00 (24 years ago)
Author:
cs025
Message:

Improved logging of manifest items, tidied the handling of items with extended
paths in the manifest (logging creation of directories on the path); finally
removed some old garbage from gsinstall.cpp.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsinstaller/gsManifest.cpp

    r1543 r1545  
    278278}
    279279
    280 void gsManifest::copied(string from, string to, bool isDir)
    281 {
    282   if (isDir)
    283     {
    284       this->logAction("Manifest.CreateDir", to);
    285     }
    286   else
    287     {   
    288       this->logAction("Manifest.CopyFile", from, to);
    289     }
     280void gsManifest::copiedFile(string from, string to)
     281{ this->logAction("Manifest.CopyFile", from, to);
     282}
     283
     284void gsManifest::copiedDir(string dirName)
     285{ this->logAction("Manifest.CreateDir", dirName);
    290286}
    291287
Note: See TracChangeset for help on using the changeset viewer.