diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-26 12:35:01 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-26 12:35:01 (GMT) |
commit | 2d3a014e62dce6f93e959ef6106ecc9167729967 (patch) | |
tree | dc73c573077513a68ddb24f4d84c8b1c5f0ed3fc /src/rtfdocvisitor.cpp | |
parent | 9901c06e250aca3b4b01b9038b7eed5af05b8398 (diff) | |
parent | 5b1eaf616f0edd430637d31eae51eea26fbac408 (diff) | |
download | Doxygen-2d3a014e62dce6f93e959ef6106ecc9167729967.zip Doxygen-2d3a014e62dce6f93e959ef6106ecc9167729967.tar.gz Doxygen-2d3a014e62dce6f93e959ef6106ecc9167729967.tar.bz2 |
Merge branch 'feature/bug_html_s' of https://github.com/albert-github/doxygen into albert-github-feature/bug_html_s
Diffstat (limited to 'src/rtfdocvisitor.cpp')
-rw-r--r-- | src/rtfdocvisitor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rtfdocvisitor.cpp b/src/rtfdocvisitor.cpp index 5a8e49d..8e23d4e 100644 --- a/src/rtfdocvisitor.cpp +++ b/src/rtfdocvisitor.cpp @@ -235,6 +235,7 @@ void RTFDocVisitor::visit(DocStyleChange *s) case DocStyleChange::Bold: if (s->enable()) m_t << "{\\b "; else m_t << "} "; break; + case DocStyleChange::S: case DocStyleChange::Strike: case DocStyleChange::Del: if (s->enable()) m_t << "{\\strike "; else m_t << "} "; |