aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/browser.cpp4
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