diff options
| author | Neil Millstone | 2006-08-31 19:32:38 +0000 | 
|---|---|---|
| committer | Neil Millstone | 2006-08-31 19:32:38 +0000 | 
| commit | 1da493ac006fa77d02700765ade698eb5281fe59 (patch) | |
| tree | c74d252ba7fdd384a757c31295f6c342c8e62efe | |
| parent | 64aa291a1684e6d7feeb33c1a16687c36d396205 (diff) | |
| download | scummvm-rg350-1da493ac006fa77d02700765ade698eb5281fe59.tar.gz scummvm-rg350-1da493ac006fa77d02700765ade698eb5281fe59.tar.bz2 scummvm-rg350-1da493ac006fa77d02700765ade698eb5281fe59.zip | |
Adding new name() method.
svn-id: r23813
| -rw-r--r-- | backends/fs/ds/ds-fs.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/backends/fs/ds/ds-fs.h b/backends/fs/ds/ds-fs.h index 2d16217f06..951d15799b 100644 --- a/backends/fs/ds/ds-fs.h +++ b/backends/fs/ds/ds-fs.h @@ -92,6 +92,8 @@ public:  	GBAMPFileSystemNode(const GBAMPFileSystemNode *node);  	virtual String displayName() const {  return _displayName; } +	virtual String name() const {  return _displayName; } +	  	virtual bool isValid() const { return _isValid; }  	virtual bool isDirectory() const { return _isDirectory; }  	virtual String path() const { return _path; } | 
