diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-10-30 20:57:53 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-10-30 20:57:53 (GMT) |
commit | afc47efd97b995277e5635107b00001fc025cdff (patch) | |
tree | dd06bd100b0bd88b6ee40c8464efac800a749c32 /src/util.cpp | |
parent | dc404b516e366ca10ad325d399ef0bd47d065863 (diff) | |
download | Doxygen-afc47efd97b995277e5635107b00001fc025cdff.zip Doxygen-afc47efd97b995277e5635107b00001fc025cdff.tar.gz Doxygen-afc47efd97b995277e5635107b00001fc025cdff.tar.bz2 |
Release-1.2.18-20021030
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index a265a15..2141530 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -2570,6 +2570,7 @@ bool generateLink(OutputDocInterface &od,const char *clName, linkText=linkText.right(linkText.length()-2); } } + //printf("generateLink linkText=%s\n",linkText.data()); if (resolveLink(clName,lr,inSeeBlock,&compound,&pageInfo,anchor)) { if (pageInfo) // link to page @@ -2596,6 +2597,10 @@ bool generateLink(OutputDocInterface &od,const char *clName, writePageRef(od,compound->getOutputFileBase(),anchor); } } + else + { + err("%s:%d: Internal error: resolveLink successful but no compound found!\n",__FILE__,__LINE__); + } return TRUE; } else // link could not be found @@ -3267,7 +3272,7 @@ QList<ArgumentList> *copyArgumentLists(const QList<ArgumentList> *srcLists) * that make up specialized classes. The switch \a parentOnly * determines whether or not a template "at the end" of a scope * should be considered, e.g. with \a parentOnly is \c TRUE, A<T>::B<S> will - * try to strip <T> and not <S>, while \a parentOnly is \c FALSE will + * try to strip \<T\> and not \<S\>, while \a parentOnly is \c FALSE will * strip both unless A<T> or B<S> are specialized template classes. */ QCString stripTemplateSpecifiersFromScope(const QCString &fullName, |