Skip to content

Commit

Permalink
Merge pull request #418 from albert-github/feature/bug_606104
Browse files Browse the repository at this point in the history
Bug 606104 - Deprecated list: Wrong prefix '<globalScope>::' for global functions
  • Loading branch information
Dimitri van Heesch committed Dec 10, 2015
2 parents e344bbe + a5288ac commit b103d90
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/reflist.cpp
Expand Up @@ -153,9 +153,12 @@ void RefList::generatePage()
doc += "\n";
if (item->scope)
{
doc += "\\_setscope ";
doc += item->scope->name();
doc += " ";
if (item->scope->name() != "<globalScope>")
{
doc += "\\_setscope ";
doc += item->scope->name();
doc += " ";
}
}
doc += item->prefix;
doc += " \\_internalref ";
Expand Down

0 comments on commit b103d90

Please sign in to comment.