summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2004-12-24 11:05:13 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2004-12-24 11:05:13 (GMT)
commit0e5fe1510853a0a05add1a9a25b3958893591328 (patch)
treef8b52ae17a2d8d346c9baa2998e36a5993a2eb12 /src/util.cpp
parent04a4eddbeaa2fef70fe87a790efabe074062fadf (diff)
downloadDoxygen-0e5fe1510853a0a05add1a9a25b3958893591328.zip
Doxygen-0e5fe1510853a0a05add1a9a25b3958893591328.tar.gz
Doxygen-0e5fe1510853a0a05add1a9a25b3958893591328.tar.bz2
Release-1.3.9.1-20041224
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp12
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;