summaryrefslogtreecommitdiff
path: root/py/modules/IcePy/Communicator.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-05-12 13:50:05 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-05-12 13:50:05 +0000
commit892bc25c813ced27f04bd872423109f0bd868b6f (patch)
treecda7ba37c46f0ba676f62c60975c30ef40fd7fa5 /py/modules/IcePy/Communicator.cpp
parentFix bug 973 (diff)
downloadice-892bc25c813ced27f04bd872423109f0bd868b6f.tar.bz2
ice-892bc25c813ced27f04bd872423109f0bd868b6f.tar.xz
ice-892bc25c813ced27f04bd872423109f0bd868b6f.zip
Removed/fixed use of stringToIdentity. Fixed bug 973
Diffstat (limited to 'py/modules/IcePy/Communicator.cpp')
-rw-r--r--py/modules/IcePy/Communicator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/py/modules/IcePy/Communicator.cpp b/py/modules/IcePy/Communicator.cpp
index 19eb5440013..c55fe2c247e 100644
--- a/py/modules/IcePy/Communicator.cpp
+++ b/py/modules/IcePy/Communicator.cpp
@@ -438,7 +438,7 @@ communicatorStringToIdentity(CommunicatorObject* self, PyObject* args)
return NULL;
}
- return IcePy::createIdentity(id);
+ return createIdentity(id);
}
#ifdef WIN32
@@ -449,13 +449,13 @@ communicatorIdentityToString(CommunicatorObject* self, PyObject* args)
{
PyObject* identityType = IcePy::lookupType("Ice.Identity");
PyObject* obj;
- if(!PyArg_ParseTuple(args, STRCAST("O!"), identityType, &obj))
+ if(!PyArg_ParseTuple(args, STRCAST("O!"), &identityType, &obj))
{
return NULL;
}
Ice::Identity id;
- if(!IcePy::getIdentity(obj, id))
+ if(!getIdentity(obj, id))
{
return NULL;
}