diff options
author | Michi Henning <michi@zeroc.com> | 2007-12-19 16:38:08 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-12-19 16:38:08 +1000 |
commit | 756a1b05c981b36bab547057a6ffa924dd39cbca (patch) | |
tree | 79d4182baeae4908f99b5f91145119ffd599f037 /cpp/src/slice2html/Gen.cpp | |
parent | Forgot to update CHANGES file for bug 2428. (diff) | |
download | ice-756a1b05c981b36bab547057a6ffa924dd39cbca.tar.bz2 ice-756a1b05c981b36bab547057a6ffa924dd39cbca.tar.xz ice-756a1b05c981b36bab547057a6ffa924dd39cbca.zip |
Bug 2537.
Diffstat (limited to 'cpp/src/slice2html/Gen.cpp')
-rw-r--r-- | cpp/src/slice2html/Gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index 3e1ae771778..e88d3d7e2ea 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -2255,7 +2255,7 @@ Slice::ExceptionGenerator::generate(const ExceptionPtr& e) _out.inc(); _out << nl << "extends "; _out.inc(); - _out << nl << toString(base, e); + _out << nl << toString(base, e, false); _out.dec(); _out.dec(); } @@ -2372,7 +2372,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) ClassList bases = c->bases(); if(!bases.empty() && !bases.front()->isInterface()) { - _out << " extends " << toString(bases.front(), c); + _out << " extends " << toString(bases.front(), c, false); bases.pop_front(); } |