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/PARSIMONY/AP_main.cxx

    r5855 r6141  
    1919*************************/ 
    2020 
    21 int AP_ERR::modus = 0; 
     21int AP_ERR::mode = 0; 
    2222 
    2323AP_ERR::~AP_ERR() 
     
    3131{ 
    3232    text = pntr; 
    33     if (modus == 0) { 
     33    if (mode == 0) { 
    3434        cout << "\n*** WARNING *** \n" << text <<"\n"; 
    3535        cout.flush(); 
     
    4040{ 
    4141    text = pntr2; 
    42     if (modus == 0) { 
     42    if (mode == 0) { 
    4343        cout << "\n***** WARNING  in " << pntr << "\n" << text <<"\n"; 
    4444        cout.flush(); 
     
    7070 
    7171void AP_ERR::set_mode(int i) { 
    72     modus = i; 
     72    mode = i; 
    7373} 
    7474