diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-07-17 20:55:44 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-07-17 20:55:44 (GMT) |
commit | aee36e26c595fa69c0bdbba3c470ba8b7b153dac (patch) | |
tree | 8287e27d133bcae2c4cca5bbd409891c8618c52d /src/doxygen.cpp | |
parent | 5444ff60bbf81c46841827e66e72f3148edde9ff (diff) | |
download | Doxygen-aee36e26c595fa69c0bdbba3c470ba8b7b153dac.zip Doxygen-aee36e26c595fa69c0bdbba3c470ba8b7b153dac.tar.gz Doxygen-aee36e26c595fa69c0bdbba3c470ba8b7b153dac.tar.bz2 |
Release-1.3.2-20030717
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index fe2d958..c4c88a3 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -235,7 +235,6 @@ static void addRelatedPage(Entry *root) } } - static void buildGroupListFiltered(Entry *root,bool additional) { if (root->section==Entry::GROUPDOC_SEC && !root->name.isEmpty()) @@ -6783,10 +6782,11 @@ static void readFiles(BufStr &output) int fileNameSize=fileName.length(); - bool multiLineIsBrief = Config_getBool("MULTILINE_CPP_IS_BRIEF"); + //bool multiLineIsBrief = Config_getBool("MULTILINE_CPP_IS_BRIEF"); - BufStr tempBuf(10000); - BufStr *bufPtr = multiLineIsBrief ? &output : &tempBuf; + BufStr tempBuf(20000); + //BufStr *bufPtr = multiLineIsBrief ? &output : &tempBuf; + BufStr *bufPtr = &tempBuf; // add begin filename marker bufPtr->addChar(0x06); @@ -6809,10 +6809,10 @@ static void readFiles(BufStr &output) bufPtr->addChar('\n'); /* to prevent problems under Windows ? */ - if (!multiLineIsBrief) - { + //if (!multiLineIsBrief) + //{ convertCppComments(&tempBuf,&output); - } + //} s=inputFiles.next(); //printf("-------> adding new line\n"); |