diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2009-10-28 22:18:19 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2009-10-28 22:18:19 (GMT) |
commit | 6f2abee157d4310a8272ca0f748ce6b812ae7260 (patch) | |
tree | a1b4452fc550e4704ab634059e642fd2d1226751 /src/htmldocvisitor.cpp | |
parent | 0c751ba9f9a73ad649bf64cef4c9fdb82743b2f6 (diff) | |
download | Doxygen-6f2abee157d4310a8272ca0f748ce6b812ae7260.zip Doxygen-6f2abee157d4310a8272ca0f748ce6b812ae7260.tar.gz Doxygen-6f2abee157d4310a8272ca0f748ce6b812ae7260.tar.bz2 |
replaced png extension with gif for forumulas
Diffstat (limited to 'src/htmldocvisitor.cpp')
-rw-r--r-- | src/htmldocvisitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp index 49a0de2..7391a76 100644 --- a/src/htmldocvisitor.cpp +++ b/src/htmldocvisitor.cpp @@ -490,7 +490,7 @@ void HtmlDocVisitor::visit(DocFormula *f) m_t << "\""; /// @todo cache image dimensions on formula generation and give height/width /// for faster preloading and better rendering of the page - m_t << " src=\"" << f->relPath() << f->name() << ".png\"/>"; + m_t << " src=\"" << f->relPath() << f->name() << ".gif\"/>"; if (bDisplay) { m_t << endl << "</p>" << endl; |