summaryrefslogtreecommitdiff
path: root/cpp/src/slice2html/Gen.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2006-12-20 05:23:06 +0000
committerMichi Henning <michi@zeroc.com>2006-12-20 05:23:06 +0000
commit47d1dc5c6ab1a819d30937874bd20326c3477f48 (patch)
tree767fdff60da97d1830444334dfa8249e08688149 /cpp/src/slice2html/Gen.cpp
parentChanged to use headings instead of display lists. (diff)
downloadice-47d1dc5c6ab1a819d30937874bd20326c3477f48.tar.bz2
ice-47d1dc5c6ab1a819d30937874bd20326c3477f48.tar.xz
ice-47d1dc5c6ab1a819d30937874bd20326c3477f48.zip
Fixed broken end title tag.
Diffstat (limited to 'cpp/src/slice2html/Gen.cpp')
-rw-r--r--cpp/src/slice2html/Gen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp
index ee2260215fc..6f28b6164b2 100644
--- a/cpp/src/slice2html/Gen.cpp
+++ b/cpp/src/slice2html/Gen.cpp
@@ -126,7 +126,7 @@ Slice::GeneratorBase::setHeader(const string& header)
XMLOutput O2(hdr2);
O2.inc();
O2.inc();
- O2 << nl << "<title/>";
+ O2 << nl << "</title>";
O2.dec();
O2 << nl << "</head>";
O2 << nl << "<body>";