diff options
author | Michi Henning <michi@zeroc.com> | 2007-09-12 15:41:07 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2007-09-12 15:41:07 +1000 |
commit | e45c944c7f9fe3febb26f09502e43e59bcbb1c58 (patch) | |
tree | 19023843f9be1e26212ede65cb7d311c84599a35 /cpp/src | |
parent | Fixed bug reported in (diff) | |
download | ice-e45c944c7f9fe3febb26f09502e43e59bcbb1c58.tar.bz2 ice-e45c944c7f9fe3febb26f09502e43e59bcbb1c58.tar.xz ice-e45c944c7f9fe3febb26f09502e43e59bcbb1c58.zip |
Fix to previous fix.
Diffstat (limited to 'cpp/src')
-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 5547ad523e6..1247e90311b 100755 --- a/cpp/src/slice2cs/Gen.cpp +++ b/cpp/src/slice2cs/Gen.cpp @@ -1975,7 +1975,7 @@ Slice::Gen::TypesVisitor::visitExceptionEnd(const ExceptionPtr& p) for(q = dataMembers.begin(); q != dataMembers.end(); ++q) { string name = fixId((*q)->name(), DotNet::ApplicationException, false); - _out << nl << "this." << name << " = " << name << ';'; + _out << nl << "this." << name << " = " << fixId((*q)->name()) << ';'; } _out << eb; } |