diff options
author | Max Horn | 2008-01-20 17:12:00 +0000 |
---|---|---|
committer | Max Horn | 2008-01-20 17:12:00 +0000 |
commit | e8374f6775cae3cc9a4b2f0613312bee4bf57d8d (patch) | |
tree | e60b44db97e7c46cae156acb52d74bfe1b5e829f /backends/fs/symbian | |
parent | 77838d91e65ddeccd53ce93d9d37632123a4d174 (diff) | |
download | scummvm-rg350-e8374f6775cae3cc9a4b2f0613312bee4bf57d8d.tar.gz scummvm-rg350-e8374f6775cae3cc9a4b2f0613312bee4bf57d8d.tar.bz2 scummvm-rg350-e8374f6775cae3cc9a4b2f0613312bee4bf57d8d.zip |
Removed obsolete comment, fixed indention
svn-id: r30589
Diffstat (limited to 'backends/fs/symbian')
-rw-r--r-- | backends/fs/symbian/symbian-fs.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp index 30b2d12974..31521bce1b 100644 --- a/backends/fs/symbian/symbian-fs.cpp +++ b/backends/fs/symbian/symbian-fs.cpp @@ -59,12 +59,12 @@ public: SymbianFilesystemNode(const String &path); virtual bool exists() const { - TFileName fname; - TPtrC8 ptr((const unsigned char*)_path.c_str(),_path.size()); - fname.Copy(ptr); + TFileName fname; + TPtrC8 ptr((const unsigned char*)_path.c_str(),_path.size()); + fname.Copy(ptr); - return BaflUtils::FileExists(CEikonEnv::Static()->FsSession(), fname); - } //FIXME: this is just a stub + return BaflUtils::FileExists(CEikonEnv::Static()->FsSession(), fname); + } virtual String getDisplayName() const { return _displayName; } virtual String getName() const { return _displayName; } virtual String getPath() const { return _path; } |