Skip to content

Commit

Permalink
Fixed|libdeng2|Bank: allNames() should return dotted paths
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 17, 2014
1 parent eb849ea commit 5fe705b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/src/data/bank.cpp
Expand Up @@ -815,7 +815,7 @@ dint Bank::allItems(Names &names) const
d->items.findAllPaths(paths, PathTree::NoBranch);
DENG2_FOR_EACH(PathTree::FoundPaths, i, paths)
{
names.insert(*i);
names.insert(Path(*i).withSeparators('.'));
}
return dint(names.size());
}
Expand Down

0 comments on commit 5fe705b

Please sign in to comment.