[Scummvm-cvs-logs] CVS: scummvm/backends/fs fs.h,1.8,1.9

Max Horn fingolfin at users.sourceforge.net
Fri Oct 17 03:24:06 CEST 2003


Update of /cvsroot/scummvm/scummvm/backends/fs
In directory sc8-pr-cvs1:/tmp/cvs-serv29965

Modified Files:
	fs.h 
Log Message:
make FSList inherit 'public' from List (so that we can use List::Iterator)

Index: fs.h
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/fs/fs.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- fs.h	2 Oct 2003 17:42:58 -0000	1.8
+++ fs.h	17 Oct 2003 10:22:40 -0000	1.9
@@ -146,7 +146,7 @@
 /*
  * A sorted list of multiple file system nodes. E.g. the contents of a given directory.
  */
-class FSList : Common::List<FilesystemNode *> {
+class FSList : public Common::List<FilesystemNode *> {
 public:
 	~FSList() {
 		for (int i = 0; i < _size; i++)





More information about the Scummvm-git-logs mailing list