summaryrefslogtreecommitdiff
path: root/cpp/src/slice2vb/Gen.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-06-01 21:41:33 +0000
committerMichi Henning <michi@zeroc.com>2005-06-01 21:41:33 +0000
commit56ea83da35aa35120750d3066cc2dfda8607fa81 (patch)
tree60fd29a2a4adca5f1b9fb5644bc3576f58cc630d /cpp/src/slice2vb/Gen.cpp
parentAdded method to update application servers/templates/etc. (diff)
downloadice-56ea83da35aa35120750d3066cc2dfda8607fa81.tar.bz2
ice-56ea83da35aa35120750d3066cc2dfda8607fa81.tar.xz
ice-56ea83da35aa35120750d3066cc2dfda8607fa81.zip
Fix for bug 346.
Diffstat (limited to 'cpp/src/slice2vb/Gen.cpp')
-rwxr-xr-xcpp/src/slice2vb/Gen.cpp2
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();