diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-12-19 13:44:48 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-12-19 13:44:48 -0500 |
commit | 9206ba898e2e42a58912a794972fee73313bea4a (patch) | |
tree | 003011720def1b5a8a92440b9699688d79542da1 /cpp/src/slice2html/Gen.cpp | |
parent | Fixed bug #2514 (diff) | |
parent | updated Berkeley DB version (diff) | |
download | ice-9206ba898e2e42a58912a794972fee73313bea4a.tar.bz2 ice-9206ba898e2e42a58912a794972fee73313bea4a.tar.xz ice-9206ba898e2e42a58912a794972fee73313bea4a.zip |
Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice
Diffstat (limited to 'cpp/src/slice2html/Gen.cpp')
-rw-r--r-- | cpp/src/slice2html/Gen.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index 3cd022c2b90..e88d3d7e2ea 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -1902,7 +1902,7 @@ Slice::ModuleGenerator::generate(const ModulePtr& m) _out << nl << "<hr>"; start("h1", "Symbol"); - _out << toString(m, m->container(), true); + _out << m->scoped().substr(2); end(); string metadata, deprecateReason; @@ -2224,7 +2224,7 @@ Slice::ExceptionGenerator::generate(const ExceptionPtr& e) _out << nl << "<hr>"; start("h1", "Symbol"); - _out << toString(e, e, true); + _out << e->scoped().substr(2); end(); string metadata, deprecateReason; @@ -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(); } @@ -2342,7 +2342,7 @@ Slice::ClassGenerator::generate(const ClassDefPtr& c) _out << nl << "<hr>"; start("h1", "Symbol"); - _out << toString(c, c, true); + _out << c->scoped().substr(2); end(); string metadata, deprecateReason; @@ -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(); } @@ -2546,7 +2546,7 @@ Slice::StructGenerator::generate(const StructPtr& s) _out << nl << "<hr>"; start("h1", "Symbol"); - _out << toString(s, s, true); + _out << s->scoped().substr(2); end(); string metadata, deprecateReason; @@ -2654,7 +2654,7 @@ Slice::EnumGenerator::generate(const EnumPtr& e) _out << nl << "<hr>"; start("h1", "Symbol"); - _out << toString(e, e->container(), true); + _out << e->scoped().substr(2); end(); string metadata, deprecateReason; |