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/ARBDBPP/arbdb++.hxx

    r5968 r6141  
    4444 
    4545const int MINCACH = 1; 
    46 const int MAXCACH = 0;  // schaltet cach ein bei open Funktionen 
     46const int MAXCACH = 0;  // schaltet cache ein bei open Funktionen 
    4747const int CORE = 1; 
    4848 
    49 typedef enum ad_edit_modus { 
     49typedef enum ad_edit_mode { 
    5050    AD_allign       = 0,    // add & remove of . possible (default) 
    5151    AD_nowrite      = 1,    // no edits allowed 
     
    7474class AD_ERR 
    7575{ 
    76     int modus;      // Mode  0 = Errors, 1 = Warnings 
    77     int  anzahl;    // Number of errors 
    78     char *text;     // error text 
    79          
     76    int   mode;                                     // Mode  0 = Errors, 1 = Warnings 
     77    int   anzahl;                                   // Number of errors 
     78    char *text;                                     // error text 
     79 
    8080public: 
    8181    AD_ERR();               // create error 
     
    134134    AD_ERR *open(const char *,int ); 
    135135    AD_ERR *close(); 
    136     AD_ERR *save(const char *modus); 
    137     AD_ERR *save_as(const char *modus); 
    138     AD_ERR *save_home(const char *modus); 
     136    AD_ERR *save(const char *mode); 
     137    AD_ERR *save_as(const char *mode); 
     138    AD_ERR *save_home(const char *mode); 
    139139    AD_ERR *push_transaction(); 
    140140    AD_ERR *pop_transaction();