diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2009-08-14 14:49:07 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2009-08-14 14:49:07 (GMT) |
commit | 9e6be9a8ae24b788cf2463a703bda48cbd77c773 (patch) | |
tree | fed426d0d7216311cbd009a1fcd2786176478b5e /src/htmlgen.cpp | |
parent | 6e28050ef5483e624122b0bacb998c40664f78ee (diff) | |
download | Doxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.zip Doxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.tar.gz Doxygen-9e6be9a8ae24b788cf2463a703bda48cbd77c773.tar.bz2 |
Release-1.5.9-20090814
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 74bea86..66d3ea4 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -825,7 +825,7 @@ void HtmlGenerator::startFile(const char *name,const char *, { t << "<script type=\"text/javascript\"><!--\n"; t << "var searchBox = new SearchBox(\"searchBox\", \"" - << relPath<< "search\",false);\n"; + << relPath<< "search\",false,'" << theTranslator->trSearch() << "');\n"; t << "--></script>\n"; } generateDynamicSections(t,relPath); @@ -1294,17 +1294,19 @@ void HtmlGenerator::endClassDiagram(const ClassDiagram &d, { t << "</div>" << endl; t << "<div class=\"dynsection\">" << endl; - t << "<img class=\"center\" src=\""; - t << relPath << fileName << ".png\" usemap=\"#"; + t << " <div class=\"center\">" << endl; + t << " <img src=\""; + t << relPath << fileName << ".gif\" usemap=\"#"; docify(name); t << "_map\" alt=\"\"/>" << endl; - t << "<map id=\""; + t << " <map id=\""; docify(name); t << "_map\" name=\""; docify(name); t << "_map\">" << endl; d.writeImage(t,dir,relPath,fileName); + t << " </div>" << endl; t << "</div>" << endl; } @@ -2027,7 +2029,8 @@ static void renderQuickLinksAsTabs(QTextStream &t,const QCString &relPath, t << " onmouseover=\"return searchBox.OnSearchSelectShow()\"\n"; t << " onmouseout=\"return searchBox.OnSearchSelectHide()\"\n"; t << " alt=\"\"/>\n"; - t << " <input type=\"text\" id=\"MSearchField\" value=\"Search\" accesskey=\"S\"\n"; + t << " <input type=\"text\" id=\"MSearchField\" value=\"" + << theTranslator->trSearch() << "\" accesskey=\"S\"\n"; t << " onfocus=\"searchBox.OnSearchFieldFocus(true)\" \n"; t << " onblur=\"searchBox.OnSearchFieldFocus(false)\" \n"; t << " onkeyup=\"searchBox.OnSearchFieldChange(event)\"/>\n"; |