I don't know if this is correct, but at least browser.cpp compiles again now.

svn-id: r22299
This commit is contained in:
Torbjörn Andersson 2006-05-03 10:48:18 +00:00
parent 8c452daac2
commit 2ab62d8b02

View File

@ -226,9 +226,9 @@ void BrowserDialog::updateListing() {
// Read in the data from the file system // Read in the data from the file system
if (_isDirBrowser) if (_isDirBrowser)
_nodeContent = _node.listDir(AbstractFilesystemNode::kListDirectoriesOnly); _nodeContent = _node.listDir(FilesystemNode::kListDirectoriesOnly);
else else
_nodeContent = _node.listDir(AbstractFilesystemNode::kListAll); _nodeContent = _node.listDir(FilesystemNode::kListAll);
Common::sort(_nodeContent.begin(), _nodeContent.end()); Common::sort(_nodeContent.begin(), _nodeContent.end());
// Populate the ListWidget // Populate the ListWidget