diff options
author | Joseph Powers <jpowers27@cox.net> | 2011-01-15 21:09:33 -0800 |
---|---|---|
committer | Joseph Powers <jpowers27@cox.net> | 2011-01-15 21:09:33 -0800 |
commit | 5e02064bcc06b1ae607a94d2e3c74e3f18661ce2 (patch) | |
tree | 109f460867830fdc4da9020df2e5b5e5bce3a581 /tools/inc/bootstrp | |
parent | 7763ff4539119a27bc49e83846466d9de1d440c1 (diff) |
Convert SolarFileList from a vector to a list.
It's actually a queue so files get processed from the front and added to
the back.
Diffstat (limited to 'tools/inc/bootstrp')
-rw-r--r-- | tools/inc/bootstrp/prj.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/inc/bootstrp/prj.hxx b/tools/inc/bootstrp/prj.hxx index 550b0a5d35b3..5e809cd1a3c4 100644 --- a/tools/inc/bootstrp/prj.hxx +++ b/tools/inc/bootstrp/prj.hxx @@ -33,6 +33,7 @@ #include <tools/stream.hxx> #include <osl/mutex.hxx> #include <vector> +#include <list> #define OS_NONE 0x0000 #define OS_WIN16 0x0001 @@ -295,7 +296,7 @@ public: typedef ::std::vector< Prj* > StarList; // todo: SolarFileList should be a linked list and not a vector. // also, the Read() functions need to be changed (see 1st read() in prj.cxx for notes) -typedef ::std::vector< String* > SolarFileList; +typedef ::std::list< String* > SolarFileList; class Star { |