diff options
author | Marc Laukien <marc@zeroc.com> | 2002-06-26 23:24:58 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-06-26 23:24:58 +0000 |
commit | 844ec1a60c75b883e44cc8906e536b7fba3509a0 (patch) | |
tree | d431701690080bd2227b8f04a6d47548020a95e9 /cpp/src/Ice/Proxy.cpp | |
parent | const correctness (diff) | |
download | ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.bz2 ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.tar.xz ice-844ec1a60c75b883e44cc8906e536b7fba3509a0.zip |
case insensitivity fixes
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index cac00118bf5..319c12aa623 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -1155,11 +1155,11 @@ IceDelegateD::Ice::Object::__copyFrom(const ::IceInternal::Handle< ::IceDelegate void IceDelegateD::Ice::Object::__initCurrent(Current& current, const string& op, bool nonmutating, const Context& context) { - current.identity = __reference->identity; + current.id = __reference->identity; current.facet = __reference->facet; current.operation = op; current.nonmutating = nonmutating; - current.context = context; + current.ctx = context; } void |