summaryrefslogtreecommitdiffstats
path: root/src/reflist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/reflist.cpp')
-rw-r--r--src/reflist.cpp9
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 ";