diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-19 17:44:21 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-03-19 17:44:21 (GMT) |
commit | 4677c707462be2cc359e8a10ade803edbfe7b7fa (patch) | |
tree | cf16207c2ec24e065b19418ceabdc18560052288 /src/htmlgen.h | |
parent | 46bfc5b58c1893206fea8be057c4321fdf9870da (diff) | |
download | Doxygen-4677c707462be2cc359e8a10ade803edbfe7b7fa.zip Doxygen-4677c707462be2cc359e8a10ade803edbfe7b7fa.tar.gz Doxygen-4677c707462be2cc359e8a10ade803edbfe7b7fa.tar.bz2 |
Release 1.1.1-20000319
Diffstat (limited to 'src/htmlgen.h')
-rw-r--r-- | src/htmlgen.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/htmlgen.h b/src/htmlgen.h index 65ede84..24a42fc 100644 --- a/src/htmlgen.h +++ b/src/htmlgen.h @@ -107,7 +107,13 @@ class HtmlGenerator : public OutputGenerator void writeAnchor(const char *name) { t << "<a name=\"" << name <<"\"></a>"; } void startCodeFragment() { t << "<div class=\"fragment\"><pre>"; } - void endCodeFragment() { t << "</div></pre>"; } + void endCodeFragment() { t << "</div></pre>"; } // <- I know this is + // ordered the wrong + // way, but it is + // the only way I know + // to prevent an extra + // blank line + // (with netscape) void startCodeLine() { col=0; } void endCodeLine() { codify("\n"); } void writeBoldString(const char *text) |