diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-05-31 17:12:06 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-05-31 17:12:06 +0000 |
commit | dd71c748ecb19a0f391d91120aa652d79c0375c5 (patch) | |
tree | 1bd39301d43270a303fcd9147564fbe1d83071a1 /cpp/src/slice2cs/Gen.cpp | |
parent | Replaced "server" with "server-instance" (diff) | |
download | ice-dd71c748ecb19a0f391d91120aa652d79c0375c5.tar.bz2 ice-dd71c748ecb19a0f391d91120aa652d79c0375c5.tar.xz ice-dd71c748ecb19a0f391d91120aa652d79c0375c5.zip |
fix for bug 346
Diffstat (limited to 'cpp/src/slice2cs/Gen.cpp')
-rwxr-xr-x | cpp/src/slice2cs/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp index abf5d3431a4..4d6ad7d09b2 100755 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -3783,7 +3783,7 @@ Slice::Gen::DelegateMVisitor::visitClassDefStart(const ClassDefPtr& p) _out << eb; for(ExceptionList::const_iterator t = throws.begin(); t != throws.end(); ++t) { - _out << nl << "catch(" << fixId((*t)->name()) << ')'; + _out << nl << "catch(" << fixId((*t)->scoped()) << ')'; _out << sb; _out << nl << "throw;"; _out << eb; |