From 29c6c7a6266041ee63b40c4852e0d3a9d6c35915 Mon Sep 17 00:00:00 2001 From: Chris Apers Date: Tue, 26 Feb 2008 20:54:02 +0000 Subject: Fixed FileSystemNode::exists() method, see bug #1875588. SAGA engine works fine now svn-id: r30979 --- backends/fs/palmos/palmos-fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backends') diff --git a/backends/fs/palmos/palmos-fs.cpp b/backends/fs/palmos/palmos-fs.cpp index 49d3e3dc93..5edb6c2d26 100644 --- a/backends/fs/palmos/palmos-fs.cpp +++ b/backends/fs/palmos/palmos-fs.cpp @@ -55,7 +55,7 @@ public: */ PalmOSFilesystemNode(const String &p); - virtual bool exists() const { return true; } //FIXME: this is just a stub + virtual bool exists() const { return _isValid; } virtual String getDisplayName() const { return _displayName; } virtual String getName() const { return _displayName; } virtual String getPath() const { return _path; } -- cgit v1.2.3