diff options
author | Marc Laukien <marc@zeroc.com> | 2001-11-29 16:26:33 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-11-29 16:26:33 +0000 |
commit | 5651a067168fb1ada7c2fe38202c0d954f731609 (patch) | |
tree | 5c9bcbf29d2d3a97e8c5b0e9e774cce28222c2a3 /cpp/demo/Ice/nested/NestedI.cpp | |
parent | initial check-in (diff) | |
download | ice-5651a067168fb1ada7c2fe38202c0d954f731609.tar.bz2 ice-5651a067168fb1ada7c2fe38202c0d954f731609.tar.xz ice-5651a067168fb1ada7c2fe38202c0d954f731609.zip |
more current/context stuff
Diffstat (limited to 'cpp/demo/Ice/nested/NestedI.cpp')
-rw-r--r-- | cpp/demo/Ice/nested/NestedI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Ice/nested/NestedI.cpp b/cpp/demo/Ice/nested/NestedI.cpp index 7c241e99e6c..f5c91651f59 100644 --- a/cpp/demo/Ice/nested/NestedI.cpp +++ b/cpp/demo/Ice/nested/NestedI.cpp @@ -20,11 +20,11 @@ NestedI::NestedI(const NestedPrx& self) : } void -NestedI::nested(Int level, const NestedPrx& proxy) +NestedI::nested(Int level, const NestedPrx& proxy, const Ice::Current& current) { cout << level << endl; if (--level > 0) { - proxy->nested(level, _self); + proxy->nested(level, _self, current.context); } } |