summaryrefslogtreecommitdiffstats
path: root/src/pycode.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2005-09-18 19:25:32 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2005-09-18 19:25:32 (GMT)
commitba7233b1be8545e619d80a62dd274521392fbe1f (patch)
treeb25e22f178d0e6d1ebb7e74f2348e9811a2f5394 /src/pycode.l
parent143b39e71a45892c2b8e8bf22f5d448b441bf36a (diff)
downloadDoxygen-ba7233b1be8545e619d80a62dd274521392fbe1f.zip
Doxygen-ba7233b1be8545e619d80a62dd274521392fbe1f.tar.gz
Doxygen-ba7233b1be8545e619d80a62dd274521392fbe1f.tar.bz2
Release-1.4.4-20050918
Diffstat (limited to 'src/pycode.l')
-rw-r--r--src/pycode.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pycode.l b/src/pycode.l
index 21179ab..5ab3090 100644
--- a/src/pycode.l
+++ b/src/pycode.l
@@ -304,9 +304,10 @@ static ClassDef *stripClassName(const char *s)
QCString type = s;
QCString className;
QCString templSpec;
- while (extractClassNameFromType(type,pos,className,templSpec))
+ while (extractClassNameFromType(type,pos,className,templSpec)!=-1)
{
QCString clName=className+templSpec;
+
ClassDef *cd=0;
if (!g_classScope.isEmpty())
{
@@ -316,7 +317,6 @@ static ClassDef *stripClassName(const char *s)
{
cd=getResolvedClass(g_currentDefinition,g_sourceFileDef,clName);
}
- //printf("stripClass trying `%s' = %p\n",clName.data(),cd);
if (cd)
{
return cd;