diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-08-30 19:43:50 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-08-30 19:43:50 (GMT) |
commit | ab861c197c596f78c7aea4f45c0e1252de10fc1f (patch) | |
tree | 229d4aaac37cbdeb8fb71ce49fc5d66b8bc6cadd /src/latexgen.cpp | |
parent | 5dc8371ffb4fb0542a67656b0de900e265e96dc1 (diff) | |
download | Doxygen-ab861c197c596f78c7aea4f45c0e1252de10fc1f.zip Doxygen-ab861c197c596f78c7aea4f45c0e1252de10fc1f.tar.gz Doxygen-ab861c197c596f78c7aea4f45c0e1252de10fc1f.tar.bz2 |
Repaired breaking @include for LaTeX output
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r-- | src/latexgen.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp index c524d2e..ad4cc89 100644 --- a/src/latexgen.cpp +++ b/src/latexgen.cpp @@ -791,9 +791,11 @@ void LatexGenerator::startFile(const char *name,const char *,const char *) #endif QCString fileName=name; relPath = relativePathToRoot(fileName); - m_codeGen.setSourceFileName(stripPath(fileName)); if (fileName.right(4)!=".tex" && fileName.right(4)!=".sty") fileName+=".tex"; startPlainFile(fileName); + m_codeGen.setTextStream(t); + m_codeGen.setRelativePath(relPath); + m_codeGen.setSourceFileName(stripPath(fileName)); } void LatexGenerator::endFile() |