Ignore:
Timestamp:
2004-11-29T15:04:28+13:00 (20 years ago)
Author:
kjdon
Message:

Added the changes from Emanuel Dejanu (Simple Words) - mostly efficiency changes. For example, changing i++ to ++i, delete xxx to delete []xxx, some stuff to do with UCArrays...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/text/mgpp_decompress_text.cpp

    r3015 r8691  
    4141  char *basePath = "";
    4242  UCArray level;
    43   SetCStr (level, "Document");
     43  SetCStr (level, "Document", 8);
    4444
    4545  opterr = 0;
     
    5757      break;
    5858    case 'K':
    59       SetCStr (level, optarg);
     59      SetCStr (level, optarg, strlen(optarg));
    6060      break;
    6161    case 'h':
     
    9292    cout << docText << "\n";
    9393   
    94     docNum++;
     94    ++docNum;
    9595  }
    9696 
Note: See TracChangeset for help on using the changeset viewer.