diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-05 18:16:47 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-05 18:16:47 (GMT) |
commit | 000241f7603af61328b25cd9a9defc40be43e558 (patch) | |
tree | fea55c7f521b9b8d4c7cdecc6579109f17cae89a /src/classdef.cpp | |
parent | 75cfc919c930dc2a5c9e6770d6b1e7b09e5e8883 (diff) | |
download | Doxygen-000241f7603af61328b25cd9a9defc40be43e558.zip Doxygen-000241f7603af61328b25cd9a9defc40be43e558.tar.gz Doxygen-000241f7603af61328b25cd9a9defc40be43e558.tar.bz2 |
Release_1.1.0-20000305
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 9727621..8dc36a5 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -314,11 +314,13 @@ static void writeInheritanceSpecifier(OutputList &ol,BaseClassDef *bcd) void ClassDef::setIncludeFile(FileDef *fd,const char *incName,bool local) { + //printf("ClassDef::setInclude(%p,%s,%d)\n",fd,incName,local); if (!incInfo) incInfo=new IncludeInfo; if ((incName && incInfo->includeName.isEmpty()) || (fd!=0 && incInfo->fileDef==0) ) { + //printf("Setting file info\n"); incInfo->fileDef = fd; incInfo->includeName = incName; incInfo->local = local; @@ -1396,7 +1398,7 @@ void ClassDef::determineImplUsageRelation() { ClassDef *cd=getClass(name()+"::"+type.mid(i,l)); if (cd==0) cd=getClass(type.mid(i,l)); // TODO: also try inbetween scopes! - if (cd && cd->isLinkable()) // class exists and is linkable + if (cd /*&& cd->isLinkable()*/) // class exists and is linkable { found=TRUE; if (usesImplClassDict==0) usesImplClassDict = new UsesClassDict(257); |