aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2003-10-17 10:22:40 +0000
committerMax Horn2003-10-17 10:22:40 +0000
commitb86ae6641bea6d4d7a4e3f8e90cf976b5a63c7b1 (patch)
tree187dcaa4bff1f128f7ddcc632a4791f8f30c0cdc /backends
parent7ce63bfe0f8cc213fc11d29aef86fc65c1096c3c (diff)
downloadscummvm-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')
-rw-r--r--backends/fs/fs.h2
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++)