summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Outgoing.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-12-30 05:19:03 +0000
committerMarc Laukien <marc@zeroc.com>2002-12-30 05:19:03 +0000
commita8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc (patch)
tree22552b21c83ead223a3c2f4f5a409d0196358135 /cpp/src/Ice/Outgoing.cpp
parentfixes (diff)
downloadice-a8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc.tar.bz2
ice-a8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc.tar.xz
ice-a8f175455eeb6ab82cdd4b15edbc8f480b2ad5dc.zip
fixes
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r--cpp/src/Ice/Outgoing.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp
index 512325d0fa5..fb773895b89 100644
--- a/cpp/src/Ice/Outgoing.cpp
+++ b/cpp/src/Ice/Outgoing.cpp
@@ -39,13 +39,13 @@ IceInternal::NonRepeatable::get() const
return _ex.get();
}
-IceInternal::Outgoing::Outgoing(const ConnectionPtr& connection, const ReferencePtr& ref, const string& operation,
+IceInternal::Outgoing::Outgoing(Connection* connection, Reference* ref, const string& operation,
OperationMode mode, const Context& context) :
_connection(connection),
_reference(ref),
_state(StateUnsent),
- _is(ref->instance),
- _os(ref->instance)
+ _is(ref->instance.get()),
+ _os(ref->instance.get())
{
switch(_reference->mode)
{