diff options
author | Jose <jose@zeroc.com> | 2016-02-29 18:04:18 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-02-29 18:04:18 +0100 |
commit | 97554afcad548fcac64d399fd2e05af49ffcba12 (patch) | |
tree | 6916a256775181b7674f39ad7b3f3eeaa1fdfa62 /cpp/src/Ice/CommunicatorI.cpp | |
parent | ICE-6952 - identityToString/stringToIdentity non member functions (diff) | |
download | ice-97554afcad548fcac64d399fd2e05af49ffcba12.tar.bz2 ice-97554afcad548fcac64d399fd2e05af49ffcba12.tar.xz ice-97554afcad548fcac64d399fd2e05af49ffcba12.zip |
Rework previous fix for 3.6 compatibility
Diffstat (limited to 'cpp/src/Ice/CommunicatorI.cpp')
-rw-r--r-- | cpp/src/Ice/CommunicatorI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/CommunicatorI.cpp b/cpp/src/Ice/CommunicatorI.cpp index 3232cf57e5d..985acb23aa9 100644 --- a/cpp/src/Ice/CommunicatorI.cpp +++ b/cpp/src/Ice/CommunicatorI.cpp @@ -83,13 +83,13 @@ Ice::CommunicatorI::proxyToProperty(const ObjectPrx& proxy, const string& proper Identity Ice::CommunicatorI::stringToIdentity(const string& s) const { - return Ice::stringToIdentity(s); + return _instance->stringToIdentity(s); } string Ice::CommunicatorI::identityToString(const Identity& ident) const { - return Ice::identityToString(ident); + return _instance->identityToString(ident); } ObjectAdapterPtr |