Show
Ignore:
Timestamp:
05/06/07 10:34:36 (2 years ago)
Author:
daboo
Message:

Get rid of svector (finally).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Mulberry/trunk/Sources_Common/Application/Preferences/CIdentity.cp

    r19 r54  
    513513 
    514514        // Holds the list of identities alread inherited from 
    515         svector<const CIdentity*> ids; 
     515        vector<const CIdentity*> ids; 
    516516 
    517517        // Check whether to inherit data 
     
    525525                 
    526526                // Make sure its not in the current chain (circular inheritance) 
    527                 svector<const CIdentity*>::const_iterator found = ::find(ids.begin(), ids.end(), inherit); 
     527                vector<const CIdentity*>::const_iterator found = ::find(ids.begin(), ids.end(), inherit); 
    528528                if (found != ids.end()) 
    529529                        return NULL;