summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2009-12-14 17:48:13 +0100
committerJose <jose@zeroc.com>2009-12-14 17:48:13 +0100
commit91862e81100330f3209b4272b29ca46a7bca0679 (patch)
treeca4014bd8789bc9db491e480d4791f7bdacbeebe /cpp/src/Ice/Proxy.cpp
parentedits to README.DEMOS (diff)
downloadice-91862e81100330f3209b4272b29ca46a7bca0679.tar.bz2
ice-91862e81100330f3209b4272b29ca46a7bca0679.tar.xz
ice-91862e81100330f3209b4272b29ca46a7bca0679.zip
4471 - read(std::vector<bool>) and Stream deprecate old methods.
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp
index 8af65362363..ac40bcbcfcb 100644
--- a/cpp/src/Ice/Proxy.cpp
+++ b/cpp/src/Ice/Proxy.cpp
@@ -2150,11 +2150,11 @@ Ice::proxyIdentityAndFacetEqual(const ObjectPrx& lhs, const ObjectPrx& rhs)
void
Ice::ice_writeObjectPrx(const OutputStreamPtr& out, const ObjectPrx& v)
{
- out->writeProxy(v);
+ out->write(v);
}
void
Ice::ice_readObjectPrx(const InputStreamPtr& in, ObjectPrx& v)
{
- v = in->readProxy();
+ in->read(v);
}