From 3623a94927a3d01b6df5c75f42af13a348327c2a Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 12 May 2006 21:41:54 +0000 Subject: Added the new AbstractFilesystemNode::getCurrentDirectory() method. Also changed the semantics of the FilesystemNode constructors (see also the relevant doxygen comments for explanations). This also fixes bug #1485941. svn-id: r22424 --- backends/gp32/gp-fs.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'backends/gp32') diff --git a/backends/gp32/gp-fs.cpp b/backends/gp32/gp-fs.cpp index df056c570e..8dfa1e8c03 100644 --- a/backends/gp32/gp-fs.cpp +++ b/backends/gp32/gp-fs.cpp @@ -36,7 +36,7 @@ protected: String _path; public: - GP32FilesystemNode(void); + GP32FilesystemNode(); GP32FilesystemNode(const String &path); virtual String displayName() const { return _displayName; } @@ -48,15 +48,19 @@ public: virtual AbstractFilesystemNode *parent() const; }; -AbstractFilesystemNode *FilesystemNode::getRoot(void) { +AbstractFilesystemNode *AbstractFilesystemNode::getCurrentDirectory() { + return AbstractFilesystemNode::getRoot(); +} + +AbstractFilesystemNode *AbstractFilesystemNode::getRoot() { return new GP32FilesystemNode(); } -AbstractFilesystemNode *FilesystemNode::getNodeForPath(const String &path) { +AbstractFilesystemNode *AbstractFilesystemNode::getNodeForPath(const String &path) { return new GP32FilesystemNode(path); } -GP32FilesystemNode::GP32FilesystemNode(void) { +GP32FilesystemNode::GP32FilesystemNode() { _isDirectory = true; _isRoot = true; _displayName = "GP32 Root"; -- cgit v1.2.3