diff options
author | Michi Henning <michi@zeroc.com> | 2005-06-01 21:41:33 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-06-01 21:41:33 +0000 |
commit | 56ea83da35aa35120750d3066cc2dfda8607fa81 (patch) | |
tree | 60fd29a2a4adca5f1b9fb5644bc3576f58cc630d /cpp/src/slice2vb/Gen.cpp | |
parent | Added method to update application servers/templates/etc. (diff) | |
download | ice-56ea83da35aa35120750d3066cc2dfda8607fa81.tar.bz2 ice-56ea83da35aa35120750d3066cc2dfda8607fa81.tar.xz ice-56ea83da35aa35120750d3066cc2dfda8607fa81.zip |
Fix for bug 346.
Diffstat (limited to 'cpp/src/slice2vb/Gen.cpp')
-rwxr-xr-x | cpp/src/slice2vb/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2vb/Gen.cpp b/cpp/src/slice2vb/Gen.cpp index 76f284d6188..83d3b867377 100755 --- a/cpp/src/slice2vb/Gen.cpp +++ b/cpp/src/slice2vb/Gen.cpp @@ -4260,7 +4260,7 @@ Slice::Gen::DelegateMVisitor::visitClassDefStart(const ClassDefPtr& p) _out.dec(); for(ExceptionList::const_iterator t = throws.begin(); t != throws.end(); ++t) { - _out << nl << "Catch __ex As " << fixId((*t)->name()); + _out << nl << "Catch __ex As " << fixId((*t)->scoped()); _out.inc(); _out << nl << "Throw"; _out.dec(); |