diff options
-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 |