diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-07-15 20:10:02 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-07-15 20:10:02 (GMT) |
commit | b860a5cc743f3297002876b58d4db5e504f4294d (patch) | |
tree | b9a5247ad8e1b7ecda53346aa9e29e3e10167e5b /src/doxygen.cpp | |
parent | bcbf69496a8e7e703ecf4fb6e5de264f86ebea84 (diff) | |
download | Doxygen-b860a5cc743f3297002876b58d4db5e504f4294d.zip Doxygen-b860a5cc743f3297002876b58d4db5e504f4294d.tar.gz Doxygen-b860a5cc743f3297002876b58d4db5e504f4294d.tar.bz2 |
Release-1.2.17
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 90b1ab2..36c86c3 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -424,11 +424,11 @@ static void addIncludeFile(ClassDef *cd,FileDef *ifd,Entry *root) } if (fd->generateSourceFile()) // generate code for header { - cd->setIncludeFile(fd,iName,local); + cd->setIncludeFile(fd,iName,local,!root->includeName.isEmpty()); } else // put #include in the class documentation without link { - cd->setIncludeFile(0,iName,local); + cd->setIncludeFile(0,iName,local,FALSE); } } } @@ -6408,7 +6408,7 @@ static void readFiles(BufStr &output) bool multiLineIsBrief = Config_getBool("MULTILINE_CPP_IS_BRIEF"); BufStr tempBuf(10000); - BufStr *bufPtr = multiLineIsBrief ? &tempBuf : &output; + BufStr *bufPtr = multiLineIsBrief ? &output : &tempBuf; // add begin filename marker bufPtr->addChar(0x06); @@ -6431,7 +6431,7 @@ static void readFiles(BufStr &output) bufPtr->addChar('\n'); /* to prevent problems under Windows ? */ - if (multiLineIsBrief) + if (!multiLineIsBrief) { convertCppComments(&tempBuf,&output); } |