diff options
author | Torbjörn Andersson | 2006-05-03 10:48:18 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-05-03 10:48:18 +0000 |
commit | 2ab62d8b02f8ebd7d0ac69abdba52357f41ebb4f (patch) | |
tree | a01ee8d21bb4689ff7084732da3afad9732a9260 /gui | |
parent | 8c452daac26b7e2bd38d7ed6e895376c8982ab95 (diff) | |
download | scummvm-rg350-2ab62d8b02f8ebd7d0ac69abdba52357f41ebb4f.tar.gz scummvm-rg350-2ab62d8b02f8ebd7d0ac69abdba52357f41ebb4f.tar.bz2 scummvm-rg350-2ab62d8b02f8ebd7d0ac69abdba52357f41ebb4f.zip |
I don't know if this is correct, but at least browser.cpp compiles again now.
svn-id: r22299
Diffstat (limited to 'gui')
-rw-r--r-- | gui/browser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/browser.cpp b/gui/browser.cpp index 9a334adf46..196ac9dbd0 100644 --- a/gui/browser.cpp +++ b/gui/browser.cpp @@ -226,9 +226,9 @@ void BrowserDialog::updateListing() { // Read in the data from the file system if (_isDirBrowser) - _nodeContent = _node.listDir(AbstractFilesystemNode::kListDirectoriesOnly); + _nodeContent = _node.listDir(FilesystemNode::kListDirectoriesOnly); else - _nodeContent = _node.listDir(AbstractFilesystemNode::kListAll); + _nodeContent = _node.listDir(FilesystemNode::kListAll); Common::sort(_nodeContent.begin(), _nodeContent.end()); // Populate the ListWidget |