summaryrefslogtreecommitdiffstats
path: root/src/htmlhelp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlhelp.cpp')
-rw-r--r--src/htmlhelp.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/htmlhelp.cpp b/src/htmlhelp.cpp
index 65f6acb..9945ede 100644
--- a/src/htmlhelp.cpp
+++ b/src/htmlhelp.cpp
@@ -492,6 +492,7 @@ void HtmlHelp::createProjectFile()
t << "nav_h.png" << endl;
t << "nav_f.png" << endl;
t << "bc_s.png" << endl;
+#if 0
if (Config_getBool("HTML_DYNAMIC_SECTIONS"))
{
t << "open.png" << endl;
@@ -527,6 +528,12 @@ void HtmlHelp::createProjectFile()
t << "close.png" << endl;
}
}
+#endif
+ uint i;
+ for (i=0;i<imageFiles.count();i++)
+ {
+ t << imageFiles.at(i) << endl;
+ }
f.close();
}
else
@@ -690,3 +697,8 @@ void HtmlHelp::addIndexItem(Definition *context,MemberDef *md,
}
}
+void HtmlHelp::addImageFile(const char *fileName)
+{
+ imageFiles.append(fileName);
+}
+