diff options
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(); |