diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-20 18:23:06 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-10-20 18:23:06 (GMT) |
commit | 7c34dd2b1594925d0a012e9ba290bf9c80574db5 (patch) | |
tree | 63a7ba72ad4f8318f818aebfef29beee5811c241 /src/doxygen.cpp | |
parent | 2c6d31c8bf31028ba2f822c31f4812c2cecab306 (diff) | |
download | Doxygen-7c34dd2b1594925d0a012e9ba290bf9c80574db5.zip Doxygen-7c34dd2b1594925d0a012e9ba290bf9c80574db5.tar.gz Doxygen-7c34dd2b1594925d0a012e9ba290bf9c80574db5.tar.bz2 |
Release-1.2.18-20021020
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index cf0dadc..8874917 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -696,7 +696,8 @@ static void addClassToContext(Entry *root) QCString namespaceName; extractNamespaceName(fullName,className,namespaceName); - //printf("New class: namespace `%s' name=`%s'\n",className.data(),namespaceName.data()); + //printf("New class: namespace `%s' name=`%s' brief=`%s' docs=`%s'\n", + // className.data(),namespaceName.data(),root->brief.data(),root->doc.data()); QCString tagName; QCString refFileName; @@ -1777,6 +1778,10 @@ void addMethodToClass(Entry *root,ClassDef *cd, name=name.left(i); } + //printf("root->name=`%s; root->args=`%s' root->argList=`%s'\n", + // root->name.data(),root->args.data(),argListToString(root->argList).data() + // ); + // adding class member MemberDef *md=new MemberDef( root->fileName,root->startLine, @@ -2043,6 +2048,7 @@ static void buildFunctionList(Entry *root) //} if (root->proto) { + //printf("setDeclArgumentList to %p\n",argList); md->setDeclArgumentList(argList); } else @@ -4463,7 +4469,6 @@ static void findMember(Entry *root, // ); md->setDefinitionTemplateParameterLists(root->tArgLists); - //md->setMemberDefTemplateArguments(root->mtArgList); md->setArgumentList(argList); } else // no match -> delete argument list @@ -5377,7 +5382,7 @@ static void buildCompleteMemberLists() ClassSDict::Iterator cli(Doxygen::classSDict); for (cli.toFirst();(cd=cli.current());++cli) { - if (!cd->isReference() && // not an external class + if (// !cd->isReference() && // not an external class cd->subClasses()->count()==0 && // is a root of the hierarchy cd->baseClasses()->count()>0) // and has at least one base class { |