Show
Ignore:
Timestamp:
14/08/09 16:29:27 (3 years ago)
Author:
westram
Message:
  • spellchecked all (phew)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/PROBE_SET/ps_pg_tree_functions.cxx

    r5309 r6141  
    3737     
    3838    while (mapping[0]) { 
    39       const char *komma     = strchr(mapping, ',');   if (!komma) break; 
    40       const char *semicolon = strchr(komma, ';');     if (!semicolon) break; 
    41       string      name(mapping, komma-mapping); 
    42       komma+=1; 
    43       string idnum(komma,semicolon-komma); 
     39      const char *comma     = strchr(mapping, ',');   if (!comma) break; 
     40      const char *semicolon = strchr(comma, ';');     if (!semicolon) break; 
     41      string      name(mapping, comma-mapping); 
     42      comma+=1; 
     43      string idnum(comma,semicolon-comma); 
    4444      SpeciesID   id        = atoi(idnum.c_str()); 
    4545