diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-11-17 19:42:40 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-11-17 19:42:40 (GMT) |
commit | c6e41226574c94a869ad0757b53027562ef189e1 (patch) | |
tree | 8337108da498597418cc0db4da84a0867cd2a096 /src/util.cpp | |
parent | 9f477b87fc492221e1b7109d197fe468cd0ed23d (diff) | |
download | Doxygen-c6e41226574c94a869ad0757b53027562ef189e1.zip Doxygen-c6e41226574c94a869ad0757b53027562ef189e1.tar.gz Doxygen-c6e41226574c94a869ad0757b53027562ef189e1.tar.bz2 |
Bug 740218 - Full scope needed when making link inside cross-referenced section
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 101d6b3..acf0063 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -6364,7 +6364,7 @@ PageDef *addRelatedPage(const char *name,const QCString &ptitle, void addRefItem(const QList<ListItemInfo> *sli, const char *key, - const char *prefix, const char *name,const char *title,const char *args) + const char *prefix, const char *name,const char *title,const char *args,Definition *scope) { //printf("addRefItem(sli=%p,key=%s,prefix=%s,name=%s,title=%s,args=%s)\n",sli,key,prefix,name,title,args); if (sli && key && key[0]!='@') // check for @ to skip anonymous stuff (see bug427012) @@ -6389,6 +6389,7 @@ void addRefItem(const QList<ListItemInfo> *sli, ASSERT(item!=0); item->prefix = prefix; + item->scope = scope; item->name = name; item->title = title; item->args = args; |