diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-12-10 21:05:53 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-12-10 21:05:53 (GMT) |
commit | b103d9056cf20cf856ed5ca114950dab642b3f6f (patch) | |
tree | 18293a5d79c446aac5b83354af5d011ebcba0e58 | |
parent | e344bbe73f72c8f9b434b867b1168a698148eb39 (diff) | |
parent | a5288aca31ccecb78b561b4f382fe6c559bea9f9 (diff) | |
download | Doxygen-b103d9056cf20cf856ed5ca114950dab642b3f6f.zip Doxygen-b103d9056cf20cf856ed5ca114950dab642b3f6f.tar.gz Doxygen-b103d9056cf20cf856ed5ca114950dab642b3f6f.tar.bz2 |
Merge pull request #418 from albert-github/feature/bug_606104
Bug 606104 - Deprecated list: Wrong prefix '<globalScope>::' for global functions
-rw-r--r-- | src/reflist.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/reflist.cpp b/src/reflist.cpp index 8380db7..5a80b19 100644 --- a/src/reflist.cpp +++ b/src/reflist.cpp @@ -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 "; |