summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-10-12 11:30:16 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-10-12 11:30:16 (GMT)
commitcd8d9d90f0ded716840cd405d88c8b711428e899 (patch)
treedf8e13e4cac8b44414890fbf25c4bcd702d5ebd3 /src/htmlgen.cpp
parent3102b81d682bf0b3b4dd50148434ab8e575a3d2e (diff)
downloadDoxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.zip
Doxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.tar.gz
Doxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.tar.bz2
Release-1.5.7.1-20081012
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index dcb1677..e2f9245 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -547,10 +547,7 @@ void HtmlGenerator::init()
}
createSubDirs(d);
- //if (Config_getBool("HTML_FANCY_TABS"))
- {
- writeTabData(dname);
- }
+ writeTabData(dname);
}
void HtmlGenerator::writeStyleSheetFile(QFile &file)
@@ -778,6 +775,7 @@ void HtmlGenerator::writeStyleInfo(int part)
t << defaultStyleSheet;
endPlainFile();
+ Doxygen::indexList.addStyleSheetFile("doxygen.css");
}
else // write user defined style sheet
{
@@ -796,6 +794,7 @@ void HtmlGenerator::writeStyleInfo(int part)
t << fileStr;
endPlainFile();
}
+ Doxygen::indexList.addStyleSheetFile(cssfi.fileName());
}
}
}
@@ -2345,6 +2344,7 @@ void HtmlGenerator::generateSectionImages()
{
f.writeBlock((char*)open_gif,open_gif_len);
}
+ Doxygen::indexList.addImageFile("open.gif");
}
{
QCString fileName = Config_getString("HTML_OUTPUT")+"/closed.gif";
@@ -2353,6 +2353,7 @@ void HtmlGenerator::generateSectionImages()
{
f.writeBlock((char*)closed_gif,closed_gif_len);
}
+ Doxygen::indexList.addImageFile("closed.gif");
}
}