summaryrefslogtreecommitdiffstats
path: root/src/latexgen.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-03-31 16:38:50 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-03-31 16:38:50 (GMT)
commit97415f7b4504d2be65338464731d7bbb4aa4d993 (patch)
treef65c6db950777a470f586c452bf6f1c7d8e3a7f7 /src/latexgen.h
parentb2ead3a228cc44b8d3b67a4e71723f30031fa273 (diff)
downloadDoxygen-97415f7b4504d2be65338464731d7bbb4aa4d993.zip
Doxygen-97415f7b4504d2be65338464731d7bbb4aa4d993.tar.gz
Doxygen-97415f7b4504d2be65338464731d7bbb4aa4d993.tar.bz2
Regression: source code was not longer visible in HTML/LaTeX/docbook output
Diffstat (limited to 'src/latexgen.h')
-rw-r--r--src/latexgen.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/latexgen.h b/src/latexgen.h
index ce99789..4e92280 100644
--- a/src/latexgen.h
+++ b/src/latexgen.h
@@ -29,8 +29,7 @@ class LatexCodeGenerator : public CodeOutputInterface
{
public:
LatexCodeGenerator(TextStream &t,const QCString &relPath,const QCString &sourceFile);
- LatexCodeGenerator();
- void setTextStream(TextStream &t);
+ LatexCodeGenerator(TextStream &t);
void setRelativePath(const QCString &path);
void setSourceFileName(const QCString &sourceFileName);
void codify(const char *text);
@@ -67,7 +66,7 @@ class LatexCodeGenerator : public CodeOutputInterface
const char *tooltip);
void docify(const char *str);
bool m_streamSet = false;
- TextStream m_t;
+ TextStream &m_t;
QCString m_relPath;
QCString m_sourceFileName;
int m_col = 0;