summaryrefslogtreecommitdiff
path: root/cpp/src/slice2html/Gen.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2006-12-20 05:08:05 +0000
committerMichi Henning <michi@zeroc.com>2006-12-20 05:08:05 +0000
commit33e2defd461b9cf013b7fd2405d9f29902622e5a (patch)
treeb03cf2d60a52eaa18835246cff940b940c3892e9 /cpp/src/slice2html/Gen.cpp
parentHooked up Windows build. (diff)
downloadice-33e2defd461b9cf013b7fd2405d9f29902622e5a.tar.bz2
ice-33e2defd461b9cf013b7fd2405d9f29902622e5a.tar.xz
ice-33e2defd461b9cf013b7fd2405d9f29902622e5a.zip
Fixed bug that caused link to be omitted to derived classes and exceptions.
Diffstat (limited to 'cpp/src/slice2html/Gen.cpp')
-rw-r--r--cpp/src/slice2html/Gen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp
index 90cb42305fc..f7d57b9e380 100644
--- a/cpp/src/slice2html/Gen.cpp
+++ b/cpp/src/slice2html/Gen.cpp
@@ -412,7 +412,7 @@ Slice::GeneratorBase::printComment(const ContainedPtr& p, const string& deprecat
for(ClassList::const_iterator q = derivedClasses.begin(); q != derivedClasses.end(); ++q)
{
start("dt", "Symbol");
- _out << toString(*q, container, true, inIndex);
+ _out << toString(*q, container, false, inIndex);
end();
}
end();
@@ -439,7 +439,7 @@ Slice::GeneratorBase::printComment(const ContainedPtr& p, const string& deprecat
for(ExceptionList::const_iterator q = derivedExceptions.begin(); q != derivedExceptions.end(); ++q)
{
start("dt", "Symbol");
- _out << toString(*q, container, true, inIndex);
+ _out << toString(*q, container, false, inIndex);
end();
}
end();