diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-08-27 13:42:26 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-08-27 13:42:26 (GMT) |
commit | cfac0824b1d201fac37772ac42662901efc88ba7 (patch) | |
tree | a2aecf7a3c6580f0b776c1624164d40e7bae0973 /src | |
parent | 0e2e8916f81892c891a33c5435024776ca0f570f (diff) | |
parent | 663544cc0caf9109ea10c33f38b1e07e7a01a575 (diff) | |
download | Doxygen-cfac0824b1d201fac37772ac42662901efc88ba7.zip Doxygen-cfac0824b1d201fac37772ac42662901efc88ba7.tar.gz Doxygen-cfac0824b1d201fac37772ac42662901efc88ba7.tar.bz2 |
Merge pull request #386 from albert-github/feature/bug_753909
Bug 753909 - Copy and paste of code fragment from CHM merges all pasted text into single line
Diffstat (limited to 'src')
-rw-r--r-- | src/htmlgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index e8da420..e6431e8 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -653,7 +653,7 @@ void HtmlCodeGenerator::startCodeLine(bool hasLineNumbers) void HtmlCodeGenerator::endCodeLine() { - if (m_streamSet) m_t << "</div>\n"; + if (m_streamSet) m_t << "</div>"; } void HtmlCodeGenerator::startFontClass(const char *s) |