diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-05-12 15:11:44 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-05-12 15:11:44 +0000 |
commit | c2ba1a66ff32456cfbd6e14fdf85befed7850960 (patch) | |
tree | 8540508c97052db9d7e1a17bea333eddc33d14e2 /py/modules/IcePy/Communicator.cpp | |
parent | Removed deprecation of stringToIdentity (diff) | |
download | ice-c2ba1a66ff32456cfbd6e14fdf85befed7850960.tar.bz2 ice-c2ba1a66ff32456cfbd6e14fdf85befed7850960.tar.xz ice-c2ba1a66ff32456cfbd6e14fdf85befed7850960.zip |
bug fix for identityToString
Diffstat (limited to 'py/modules/IcePy/Communicator.cpp')
-rw-r--r-- | py/modules/IcePy/Communicator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/modules/IcePy/Communicator.cpp b/py/modules/IcePy/Communicator.cpp index c55fe2c247e..e795baeef23 100644 --- a/py/modules/IcePy/Communicator.cpp +++ b/py/modules/IcePy/Communicator.cpp @@ -447,9 +447,9 @@ extern "C" static PyObject* communicatorIdentityToString(CommunicatorObject* self, PyObject* args) { - PyObject* identityType = IcePy::lookupType("Ice.Identity"); + PyObject* identityType = lookupType("Ice.Identity"); PyObject* obj; - if(!PyArg_ParseTuple(args, STRCAST("O!"), &identityType, &obj)) + if(!PyArg_ParseTuple(args, STRCAST("O!"), identityType, &obj)) { return NULL; } |