diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-01-28 16:04:54 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-01-28 16:04:54 -0800 |
commit | e892ac1886b3da5201d012355e3fc202a29d5ea9 (patch) | |
tree | 6c5a0366226bba6393df30129f2bfa815900ea86 /py/modules/IcePy/Proxy.cpp | |
parent | Merge branch 'master' of ssh://cvs/home/git/ice (diff) | |
download | ice-e892ac1886b3da5201d012355e3fc202a29d5ea9.tar.bz2 ice-e892ac1886b3da5201d012355e3fc202a29d5ea9.tar.xz ice-e892ac1886b3da5201d012355e3fc202a29d5ea9.zip |
bug fix for ice_isA
Diffstat (limited to 'py/modules/IcePy/Proxy.cpp')
-rw-r--r-- | py/modules/IcePy/Proxy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modules/IcePy/Proxy.cpp b/py/modules/IcePy/Proxy.cpp index a16b0d601aa..d0be96ba14d 100644 --- a/py/modules/IcePy/Proxy.cpp +++ b/py/modules/IcePy/Proxy.cpp @@ -231,7 +231,7 @@ proxyIceIsA(ProxyObject* self, PyObject* args) // // We need to reformat the arguments to match what is used by the generated code: ((params...), ctx|None) // - PyObjectHandle newArgs = Py_BuildValue(STRCAST("((O), O)"), type, ctx); + PyObjectHandle newArgs = Py_BuildValue(STRCAST("((s), O)"), type, ctx); return iceIsA(*self->proxy, newArgs.get()); } |