diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-10-21 18:02:53 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-10-21 18:02:53 (GMT) |
commit | aa58eb72e74a736d7f05328466858ac179918649 (patch) | |
tree | f5aef68ee03709376658e93142ca5df6850e649d /src/util.cpp | |
parent | 4f13c95eed55e8b0d989f2eeeb0ab72bd70f2b38 (diff) | |
download | Doxygen-aa58eb72e74a736d7f05328466858ac179918649.zip Doxygen-aa58eb72e74a736d7f05328466858ac179918649.tar.gz Doxygen-aa58eb72e74a736d7f05328466858ac179918649.tar.bz2 |
Release-1.2.11-20011021
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/util.cpp b/src/util.cpp index f1fa9c6..4d2e130 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -2638,12 +2638,15 @@ bool generateLink(OutputDocInterface &od,const char *clName, } else if ((gd=Doxygen::groupSDict[linkRef])) // link to a group { - od.startTextLink(gd->getOutputFileBase(),0); - if (lt) - od.docify(lt); - else - od.docify(gd->groupTitle()); - od.endTextLink(); + //od.startTextLink(gd->getOutputFileBase(),0); + //if (lt) + // od.docify(lt); + //else + // od.docify(gd->groupTitle()); + //od.endTextLink(); + QCString title; + if (lt) title=lt; else title=gd->groupTitle(); + od.writeObjectLink(gd->getReference(),gd->getOutputFileBase(),0,title); if (gd->isLinkableInProject()) { writePageRef(od,gd->getOutputFileBase(),0); @@ -3436,8 +3439,8 @@ found: void addRelatedPage(const char *name,const QCString &ptitle, const QCString &doc,QList<QCString> *anchors, const char *fileName,int startLine, - int todoId,int testId,int bugId,GroupDef *gd=0, - TagInfo *tagInfo=0 + int todoId,int testId,int bugId,GroupDef *gd, + TagInfo *tagInfo ) { PageInfo *pi=0; @@ -3509,7 +3512,7 @@ void addRelatedPage(const char *name,const QCString &ptitle, //---------------------------------------------------------------------------- void addRefItem(int todoId,int testId,int bugId,const char *prefix, - const char *name,const char *title,const char *args=0) + const char *name,const char *title,const char *args) { //printf("addRefItem(%s) todoId=%d testId=%d bugId=%d\n",name,todoId,testId,bugId); |