diff options
author | Michi Henning <michi@zeroc.com> | 2004-09-24 03:35:38 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-09-24 03:35:38 +0000 |
commit | 54b1c16933f2fd8d6eb6328d32edccd3ff76e863 (patch) | |
tree | 5a16960039e88308ccc1f55a40ee95ced90c3adb /cpp/src/Slice/CsUtil.cpp | |
parent | Added book demos. (diff) | |
download | ice-54b1c16933f2fd8d6eb6328d32edccd3ff76e863.tar.bz2 ice-54b1c16933f2fd8d6eb6328d32edccd3ff76e863.tar.xz ice-54b1c16933f2fd8d6eb6328d32edccd3ff76e863.zip |
Changed prefix escape for .NET framework methods. Fixed a few bugs in
slice2vb code generator.
Diffstat (limited to 'cpp/src/Slice/CsUtil.cpp')
-rwxr-xr-x | cpp/src/Slice/CsUtil.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Slice/CsUtil.cpp b/cpp/src/Slice/CsUtil.cpp index c5c94d78366..9e9220c9597 100755 --- a/cpp/src/Slice/CsUtil.cpp +++ b/cpp/src/Slice/CsUtil.cpp @@ -60,8 +60,9 @@ lookupKwd(const string& name) }; found = binary_search(&memberList[0], &memberList[sizeof(memberList) / sizeof(*memberList)], - name); - return found ? "_cs_" + name : name; + name, + Slice::CICompare()); + return found ? "_Ice_" + name : name; } // |