summaryrefslogtreecommitdiffstats
path: root/src/latexgen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-08-21 08:11:15 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2011-08-21 08:11:15 (GMT)
commitd71a726489094c4fc1cf94f27a6eaa9a9f56a538 (patch)
tree26df576f6822a144ec9e57d58a5e9cca717ebd7b /src/latexgen.cpp
parent9e5aed6d58f0e33ca942f67daa49971d885b0110 (diff)
downloadDoxygen-d71a726489094c4fc1cf94f27a6eaa9a9f56a538.zip
Doxygen-d71a726489094c4fc1cf94f27a6eaa9a9f56a538.tar.gz
Doxygen-d71a726489094c4fc1cf94f27a6eaa9a9f56a538.tar.bz2
Release-1.7.5.1
Diffstat (limited to 'src/latexgen.cpp')
-rw-r--r--src/latexgen.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/latexgen.cpp b/src/latexgen.cpp
index 8500d10..d28f5e0 100644
--- a/src/latexgen.cpp
+++ b/src/latexgen.cpp
@@ -956,7 +956,10 @@ void LatexGenerator::startIndexSection(IndexSections is)
else
{
QCString header = fileToString(latexHeader);
- t << substituteKeywords(header,0);
+ t << substituteKeywords(header,0,
+ Config_getString("PROJECT_NAME"),
+ Config_getString("PROJECT_NUMBER"),
+ Config_getString("PROJECT_BRIEF"));
}
}
break;
@@ -1351,7 +1354,10 @@ void LatexGenerator::endIndexSection(IndexSections is)
else
{
QCString footer = fileToString(latexFooter);
- t << substituteKeywords(footer,0);
+ t << substituteKeywords(footer,0,
+ Config_getString("PROJECT_NAME"),
+ Config_getString("PROJECT_NUMBER"),
+ Config_getString("PROJECT_BRIEF"));
}
break;
}