diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:42:00 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 1999-12-15 19:42:00 (GMT) |
commit | df5aeefd51095ad5b1f5fe1bf563a7302f93feeb (patch) | |
tree | e1e96dcb9bbad928271e0546023ea0a9841641b6 /src/classdef.cpp | |
parent | dc2968f7b44b1a219a0695ba80c63cd0d7da0ef1 (diff) | |
download | Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.zip Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.tar.gz Doxygen-df5aeefd51095ad5b1f5fe1bf563a7302f93feeb.tar.bz2 |
mods for doxygen-0.49-991205
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 4db552e..5e5e4c3 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -262,7 +262,7 @@ void ClassDef::writeDocumentation(OutputList &ol) if (incFile) { QCString nm=incName.copy(); - if (incName.isNull()) nm=incFile->name(); + if (incName.isEmpty()) nm=incFile->name(); ol.startTypewriter(); ol.docify("#include <"); ol.disable(OutputGenerator::Html); @@ -418,7 +418,7 @@ void ClassDef::writeDocumentation(OutputList &ol) bool exampleFlag=hasExamples(); if (!briefDescription().isEmpty() || !documentation().isEmpty() || - (bodyLine!=-1 && bodyDef) || + (startBodyLine!=-1 && bodyDef) || exampleFlag) { ol.writeRuler(); @@ -494,7 +494,7 @@ void ClassDef::writeDocumentation(OutputList &ol) //ol.endDescItem(); ol.endDescList(); } - writeSourceRef(ol); + writeSourceRef(ol,name()); } pubMembers.countDocMembers(); @@ -837,7 +837,7 @@ void ClassDef::writeIncludeFile(OutputList &ol) startFile(ol,fileName+"-include",name()+" Include File"); startTitle(ol,0); QCString n=incName.copy(); - if (incName.isNull()) n=incFile->name(); + if (incName.isEmpty()) n=incFile->name(); parseText(ol,n); endTitle(ol,0,0); parseText(ol,theTranslator->trVerbatimText(incFile->name())); |