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/MULTI_PROBE/SoTl.hxx

    r5156 r6141  
    145145    // in the list, the flag duplicates has to be set to FALSE. 
    146146    // Finally the relation has to be set, by which the list is sorted. 
    147     // The possiblilities are : RELATION_GREATER and RELATION_LESS 
     147    // The possibilities are : RELATION_GREATER and RELATION_LESS 
    148148    positiontype        insert_sorted_by_address_of_object(     Type *object, 
    149149                                                                int relation=RELATION_LESS, 
     
    377377template <class Type> inline Type *List<Type>::get_last() 
    378378{ 
    379     if (last && ! sotl)                     //behaviour of a normal linked list 
     379    if (last && ! sotl)                     //behavior of a normal linked list 
    380380    { 
    381381        last_asked_list_elem = last; 
     
    400400    if (last_asked_list_elem){ 
    401401 
    402         if (!sotl)              //behaviour of a normal linked list 
     402        if (!sotl)              //behavior of a normal linked list 
    403403        { 
    404404            last_asked_list_elem = last_asked_list_elem->get_prev(); 
     
    430430    if (last_asked_list_elem){ 
    431431 
    432         if (!sotl)              //behaviour of a normal linked list 
     432        if (!sotl)              //behavior of a normal linked list 
    433433        { 
    434434            last_asked_list_elem = last_asked_list_elem->next;