diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-09-28 18:54:57 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2008-09-28 18:54:57 (GMT) |
commit | 631bd3426f23c6a69b8a19156b25387ceba007d4 (patch) | |
tree | 49bbfc50150f8734b5b10c2f0ea81182413c8bb7 /src/htmlgen.cpp | |
parent | 9e34481c1a67ca9ffb6a83f9723f23f6cf3982c7 (diff) | |
download | Doxygen-631bd3426f23c6a69b8a19156b25387ceba007d4.zip Doxygen-631bd3426f23c6a69b8a19156b25387ceba007d4.tar.gz Doxygen-631bd3426f23c6a69b8a19156b25387ceba007d4.tar.bz2 |
Release-1.5.7
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 500651b..5e4437a 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -2400,4 +2400,15 @@ void HtmlGenerator::endConstraintList() t << "</div>" << endl; } +void HtmlGenerator::lineBreak(const char *style) +{ + if (style) + { + t << "<br class=\"" << style << "\">" << endl; + } + else + { + t << "<br>" << endl; + } +} |