diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-01-24 07:49:59 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-01-24 07:49:59 -0800 |
commit | e69f752bed9cad9119653297b751b76ff66c8b2a (patch) | |
tree | 3a2c43b7a0318f57f1363b5cf07b20bdf3d347f7 /rsc/inc | |
parent | e01c5fc7024afdf8530cce1d4c787c132084b120 (diff) |
Remove DECLARE_LIST( RscBaseList, RscTop* )
Diffstat (limited to 'rsc/inc')
-rw-r--r-- | rsc/inc/rscdb.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/inc/rscdb.hxx b/rsc/inc/rscdb.hxx index 346f95497800..de2b026d4f35 100644 --- a/rsc/inc/rscdb.hxx +++ b/rsc/inc/rscdb.hxx @@ -57,7 +57,7 @@ struct WriteRcContext /****************** R s c T y p C o n ************************************/ // Liste die alle Basistypen enthaelt -DECLARE_LIST( RscBaseList, RscTop * ) +typedef ::std::vector< RscTop* > RscBaseList; // Tabelle fuer Systemabhaengige Resourcen struct RscSysEntry @@ -332,7 +332,7 @@ public: ByteString GetSysSearchPath() const { return aSysSearchPath; } void InsertType( RscTop * pType ) { - aBaseLst.Insert( pType, LIST_APPEND ); + aBaseLst.push_back( pType ); } RscTop * SearchType( Atom nTypId ); RscTop * Search( Atom typ ); |