aboutsummaryrefslogtreecommitdiff
path: root/backends/fs/amigaos4
diff options
context:
space:
mode:
authorDavid Corrales2007-07-09 01:26:54 +0000
committerDavid Corrales2007-07-09 01:26:54 +0000
commit1a965aad9568b296545890b7bb61e0de7b052e26 (patch)
tree468cc584fb960d4417780c198172c2761ecd8006 /backends/fs/amigaos4
parent8a36379d55afbfd5e322c1e216a11447a4de8a51 (diff)
downloadscummvm-rg350-1a965aad9568b296545890b7bb61e0de7b052e26.tar.gz
scummvm-rg350-1a965aad9568b296545890b7bb61e0de7b052e26.tar.bz2
scummvm-rg350-1a965aad9568b296545890b7bb61e0de7b052e26.zip
Update the interfaces for the getChildren method to include the hidden flag.
Also added some missing method stubs to the gamecard dc port. svn-id: r27984
Diffstat (limited to 'backends/fs/amigaos4')
-rw-r--r--backends/fs/amigaos4/amigaos4-fs.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/backends/fs/amigaos4/amigaos4-fs.cpp b/backends/fs/amigaos4/amigaos4-fs.cpp
index 88af467ae5..3eefd6507e 100644
--- a/backends/fs/amigaos4/amigaos4-fs.cpp
+++ b/backends/fs/amigaos4/amigaos4-fs.cpp
@@ -99,7 +99,7 @@ public:
virtual bool isWritable() const { return true; } //FIXME: this is just a stub
virtual AbstractFilesystemNode *getChild(const String &n) const;
- virtual bool getChildren(AbstractFSList &list, ListMode mode) const;
+ virtual bool getChildren(AbstractFSList &list, ListMode mode, bool hidden) const;
virtual AbstractFilesystemNode *getParent() const;
/**
@@ -279,9 +279,11 @@ AbstractFilesystemNode *AmigaOSFilesystemNode::getChild(const String &n) const {
return new AmigaOSFilesystemNode(newPath);
}
-bool AmigaOSFilesystemNode::getChildren(AbstractFSList &myList, ListMode mode) const {
+bool AmigaOSFilesystemNode::getChildren(AbstractFSList &myList, ListMode mode, bool hidden) const {
ENTER();
+ //TODO: honor the hidden flag
+
if (!_bIsValid) {
debug(6, "Invalid node");
LEAVE();