diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-12-24 11:05:13 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-12-24 11:05:13 (GMT) |
commit | 939d1c84acd07060ee2b4bcbdc7dbccb80952385 (patch) | |
tree | f8b52ae17a2d8d346c9baa2998e36a5993a2eb12 /src/util.cpp | |
parent | f1dfb258b6a6e29e267bcf2e5dcf77168af52cf3 (diff) | |
download | Doxygen-939d1c84acd07060ee2b4bcbdc7dbccb80952385.zip Doxygen-939d1c84acd07060ee2b4bcbdc7dbccb80952385.tar.gz Doxygen-939d1c84acd07060ee2b4bcbdc7dbccb80952385.tar.bz2 |
Release-1.3.9.1-20041224
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/util.cpp b/src/util.cpp index 8f8c835..bf30aff 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -3372,7 +3372,7 @@ bool resolveRef(/* in */ const char *scName, return FALSE; } - //printf("scName=%s name=%s\n",scName,fullName.data()); + //printf("scName=%s fullName=%s\n",scName,fullName.data()); // check if this is a class or namespace reference if (scName!=fullName && getScopeDefs(scName,fullName,cd,nd)) @@ -3388,15 +3388,17 @@ bool resolveRef(/* in */ const char *scName, } return TRUE; } - else if (scName==fullName || (!inSeeBlock && scopePos==-1)) // nothing to link => output plain text + else if (scName==fullName || (!inSeeBlock && scopePos==-1)) + // nothing to link => output plain text { + //printf("found scName=%s fullName=%s scName==fullName=%d " + // "inSeeBlock=%d scopePos=%d!\n", + // scName,fullName.data(),scName==fullName,inSeeBlock,scopePos); return FALSE; } // continue search... } - //printf("scopeContext=%s scopeUser=%s\n",scopeContext.data(),scopeUser.data()); - // extract userscope+name QCString nameStr=fullName.left(endNamePos); @@ -3561,7 +3563,7 @@ bool resolveLink(/* in */ const char *scName, *resContext=0; QCString linkRef=lr; - printf("ResolveLink linkRef=%s\n",lr); + //printf("ResolveLink linkRef=%s\n",lr); FileDef *fd; GroupDef *gd; PageDef *pd; |