diff options
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r-- | src/xmlgen.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp index 3f86e53..1ab72ff 100644 --- a/src/xmlgen.cpp +++ b/src/xmlgen.cpp @@ -140,7 +140,7 @@ inline void writeXMLCodeString(FTextStream &t,const char *s, int &col) case '&': t << "&"; col++; break; case '\'': t << "'"; col++; break; case '"': t << """; col++; break; - default: t << c; col++; break; + default: s=writeUtf8Char(t,s-1); col++; break; } } } @@ -348,9 +348,6 @@ class XMLCodeGenerator : public CodeOutputInterface if (extRef) m_external=extRef; } } - void linkableSymbol(int, const char *,Definition *,Definition *) - { - } void setCurrentDoc(Definition *,const char *,bool) { } |