diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-03-24 11:51:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-03-24 11:51:51 (GMT) |
commit | deaa34e0c1d990f37fe00e465ac7a22f705904f0 (patch) | |
tree | 8d5749ba8d587d7b753162c524b18f7e7cdf6a0b /src/htmlgen.cpp | |
parent | aacd1557af129e2bff3514169e04168376a2431b (diff) | |
download | Doxygen-deaa34e0c1d990f37fe00e465ac7a22f705904f0.zip Doxygen-deaa34e0c1d990f37fe00e465ac7a22f705904f0.tar.gz Doxygen-deaa34e0c1d990f37fe00e465ac7a22f705904f0.tar.bz2 |
Release-1.8.3.1-20130324
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index f19f5d6..df95ede 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1278,7 +1278,7 @@ void HtmlCodeGenerator::codify(const char *str) m_t << "\\"; m_col++; break; - default: m_t << c; + default: p=writeUtf8Char(m_t,p-1); m_col++; break; } @@ -1403,11 +1403,6 @@ void HtmlCodeGenerator::writeCodeAnchor(const char *anchor) if (m_streamSet) m_t << "<a name=\"" << anchor << "\"></a>"; } -void HtmlCodeGenerator::linkableSymbol(int,const char *,Definition *,Definition *) -{ -} - - //-------------------------------------------------------------------------- HtmlGenerator::HtmlGenerator() : OutputGenerator() |