diff options
author | Max Horn | 2003-10-17 10:22:40 +0000 |
---|---|---|
committer | Max Horn | 2003-10-17 10:22:40 +0000 |
commit | b86ae6641bea6d4d7a4e3f8e90cf976b5a63c7b1 (patch) | |
tree | 187dcaa4bff1f128f7ddcc632a4791f8f30c0cdc /backends/fs | |
parent | 7ce63bfe0f8cc213fc11d29aef86fc65c1096c3c (diff) | |
download | scummvm-rg350-b86ae6641bea6d4d7a4e3f8e90cf976b5a63c7b1.tar.gz scummvm-rg350-b86ae6641bea6d4d7a4e3f8e90cf976b5a63c7b1.tar.bz2 scummvm-rg350-b86ae6641bea6d4d7a4e3f8e90cf976b5a63c7b1.zip |
make FSList inherit 'public' from List (so that we can use List::Iterator)
svn-id: r10849
Diffstat (limited to 'backends/fs')
-rw-r--r-- | backends/fs/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h index 6a5ab500d0..e849a57f10 100644 --- a/backends/fs/fs.h +++ b/backends/fs/fs.h @@ -146,7 +146,7 @@ public: /* * 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++) |