summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2007-09-12 15:41:07 +1000
committerMichi Henning <michi@zeroc.com>2007-09-12 15:41:07 +1000
commite45c944c7f9fe3febb26f09502e43e59bcbb1c58 (patch)
tree19023843f9be1e26212ede65cb7d311c84599a35 /cpp/src
parentFixed bug reported in (diff)
downloadice-e45c944c7f9fe3febb26f09502e43e59bcbb1c58.tar.bz2
ice-e45c944c7f9fe3febb26f09502e43e59bcbb1c58.tar.xz
ice-e45c944c7f9fe3febb26f09502e43e59bcbb1c58.zip
Fix to previous fix.
Diffstat (limited to 'cpp/src')
-rwxr-xr-xcpp/src/slice2cs/Gen.cpp2
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;
}