summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/Proxy.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2007-02-02 16:48:22 +0000
committerMark Spruiell <mes@zeroc.com>2007-02-02 16:48:22 +0000
commitc5a2d2a20c7edd9cd2cbbc7f7fa45d3501e28ac3 (patch)
treebe243cee977a07cacab60a9f058408adb26a9d2b /py/modules/IcePy/Proxy.cpp
parentUse Ice.OA.* properties (diff)
downloadice-c5a2d2a20c7edd9cd2cbbc7f7fa45d3501e28ac3.tar.bz2
ice-c5a2d2a20c7edd9cd2cbbc7f7fa45d3501e28ac3.tar.xz
ice-c5a2d2a20c7edd9cd2cbbc7f7fa45d3501e28ac3.zip
fixed proxy bug
Diffstat (limited to 'py/modules/IcePy/Proxy.cpp')
-rw-r--r--py/modules/IcePy/Proxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modules/IcePy/Proxy.cpp b/py/modules/IcePy/Proxy.cpp
index 8b2263dbb33..ee869aa18a4 100644
--- a/py/modules/IcePy/Proxy.cpp
+++ b/py/modules/IcePy/Proxy.cpp
@@ -180,7 +180,7 @@ extern "C"
static PyObject*
proxyRepr(ProxyObject* self)
{
- string str = (*self->communicator)->proxyToString(*self->proxy);
+ string str = (*self->proxy)->ice_toString();
return PyString_FromString(const_cast<char*>(str.c_str()));
}