diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-06-04 11:07:46 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-06-04 11:07:46 +0200 |
commit | c1c2243e742ecd94bc0c634b14a93261170a24e3 (patch) | |
tree | ed2c11eb485f2716318b43959e7ea64197fe3cd7 /py/modules/IcePy/Proxy.cpp | |
parent | Fixed (ICE-5345) - IcePHP fails to build with GCC 4.7 (diff) | |
download | ice-c1c2243e742ecd94bc0c634b14a93261170a24e3.tar.bz2 ice-c1c2243e742ecd94bc0c634b14a93261170a24e3.tar.xz ice-c1c2243e742ecd94bc0c634b14a93261170a24e3.zip |
Added __hash proxy method to get around deprecation messages when using ice_getHash, fixed identation
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 db99a99454b..f5a86e5a51c 100644 --- a/py/modules/IcePy/Proxy.cpp +++ b/py/modules/IcePy/Proxy.cpp @@ -166,7 +166,7 @@ extern "C" static long proxyHash(ProxyObject* self) { - return static_cast<long>((*self->proxy)->ice_getHash()); + return static_cast<long>((*self->proxy)->__hash()); } #ifdef WIN32 |