summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-03-12 17:43:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-03-12 17:43:22 (GMT)
commitfbf972e737aac564670aa655a3b69d82a8558e7f (patch)
treee9f3eb760b666941c8905588b99d5e8378c8b507 /src/code.l
parent69124e6ce7f023848920d2a18bc317ae92d355a2 (diff)
downloadDoxygen-fbf972e737aac564670aa655a3b69d82a8558e7f.zip
Doxygen-fbf972e737aac564670aa655a3b69d82a8558e7f.tar.gz
Doxygen-fbf972e737aac564670aa655a3b69d82a8558e7f.tar.bz2
Release 1.1.1
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/code.l b/src/code.l
index c0c26af..1a9a6b4 100644
--- a/src/code.l
+++ b/src/code.l
@@ -301,10 +301,11 @@ static bool getLink(const char *className,
ClassDef *cd;
FileDef *fd;
NamespaceDef *nd;
+ GroupDef *gd;
QCString m=memberName;
QCString c=className;
//printf("Trying `%s'::`%s'\n",c.data(),m.data());
- if (getDefs(c,m,"()",md,cd,fd,nd) && md->isLinkable())
+ if (getDefs(c,m,"()",md,cd,fd,nd,gd) && md->isLinkable())
{
//printf("Found!\n");
if (g_exampleBlock)
@@ -326,7 +327,7 @@ static bool getLink(const char *className,
}
}
Definition *d=0;
- if (cd) d=cd; else if (cd) d=nd; else d=fd;
+ if (cd) d=cd; else if (cd) d=nd; else if (fd) d=fd; else d=gd;
if (d)
{