diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-30 20:57:53 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-30 20:57:53 (GMT) |
commit | c6d6555a949e86be5c859311eb4db5dcc092c258 (patch) | |
tree | dd06bd100b0bd88b6ee40c8464efac800a749c32 /src/util.cpp | |
parent | 7c34dd2b1594925d0a012e9ba290bf9c80574db5 (diff) | |
download | Doxygen-c6d6555a949e86be5c859311eb4db5dcc092c258.zip Doxygen-c6d6555a949e86be5c859311eb4db5dcc092c258.tar.gz Doxygen-c6d6555a949e86be5c859311eb4db5dcc092c258.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, |