summaryrefslogtreecommitdiffstats
path: root/src/filedef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-10-30 21:12:45 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-10-30 21:12:45 (GMT)
commit1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6 (patch)
tree7d5c1ef91e61313f10266a746afd0d903d1e5f2a /src/filedef.cpp
parenta1116d64863123e6eda545de7ade61ae7dec7ffb (diff)
downloadDoxygen-1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6.zip
Doxygen-1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6.tar.gz
Doxygen-1c68fd3fd1c4b63f4f2260e1d7785e61d71c0de6.tar.bz2
Release-1.2.3
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r--src/filedef.cpp9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp
index 6ce4c86..c4fe0f1 100644
--- a/src/filedef.cpp
+++ b/src/filedef.cpp
@@ -422,11 +422,6 @@ void FileDef::writeDocumentation(OutputList &ol)
/*! Write a source listing of this file to the output */
void FileDef::writeSource(OutputList &ol)
{
- //QCString fn=name();
- //if (Config::fullPathNameFlag)
- //{
- // fn.prepend(stripFromPath(getPath().copy()));
- //}
ol.disableAllBut(OutputGenerator::Html);
startFile(ol,sourceName(),docname+" Source File");
startTitle(ol,0);
@@ -440,11 +435,9 @@ void FileDef::writeSource(OutputList &ol)
ol.endTextLink();
}
- //parseText(ol,theTranslator->trVerbatimText(incFile->name()));
- //ol.writeRuler();
initParseCodeContext();
ol.startCodeFragment();
- parseCode(ol,0,fileToString(absFilePath()),FALSE,0,this);
+ parseCode(ol,0,fileToString(absFilePath(),TRUE),FALSE,0,this);
ol.endCodeFragment();
endFile(ol);
ol.enableAll();