diff options
author | Jose <jose@zeroc.com> | 2012-08-13 16:10:07 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-08-13 16:10:07 +0200 |
commit | 1f568535af1dfc1619dfd0b5a74d58c29ed3af8b (patch) | |
tree | f60a79dbad94af1c40a258786b65e16dd294c8c7 /cpp/src/Ice/CommunicatorI.cpp | |
parent | Removed another disable VC++ disable warning from IceUtil/Config.h (diff) | |
download | ice-1f568535af1dfc1619dfd0b5a74d58c29ed3af8b.tar.bz2 ice-1f568535af1dfc1619dfd0b5a74d58c29ed3af8b.tar.xz ice-1f568535af1dfc1619dfd0b5a74d58c29ed3af8b.zip |
c++11 minor method renaming
Diffstat (limited to 'cpp/src/Ice/CommunicatorI.cpp')
-rw-r--r-- | cpp/src/Ice/CommunicatorI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/CommunicatorI.cpp b/cpp/src/Ice/CommunicatorI.cpp index fc1936db5e4..d5090938613 100644 --- a/cpp/src/Ice/CommunicatorI.cpp +++ b/cpp/src/Ice/CommunicatorI.cpp @@ -304,20 +304,20 @@ Ice::CommunicatorI::flushBatchRequests() AsyncResultPtr Ice::CommunicatorI::begin_flushBatchRequests() { - return begin_flushBatchRequestsInternal(::IceInternal::__dummyCallback, 0); + return __begin_flushBatchRequests(::IceInternal::__dummyCallback, 0); } AsyncResultPtr Ice::CommunicatorI::begin_flushBatchRequests(const CallbackPtr& cb, const LocalObjectPtr& cookie) { - return begin_flushBatchRequestsInternal(cb, cookie); + return __begin_flushBatchRequests(cb, cookie); } AsyncResultPtr Ice::CommunicatorI::begin_flushBatchRequests(const Callback_Communicator_flushBatchRequestsPtr& cb, const LocalObjectPtr& cookie) { - return begin_flushBatchRequestsInternal(cb, cookie); + return __begin_flushBatchRequests(cb, cookie); } namespace @@ -328,7 +328,7 @@ const ::std::string __flushBatchRequests_name = "flushBatchRequests"; } AsyncResultPtr -Ice::CommunicatorI::begin_flushBatchRequestsInternal(const IceInternal::CallbackBasePtr& cb, +Ice::CommunicatorI::__begin_flushBatchRequests(const IceInternal::CallbackBasePtr& cb, const LocalObjectPtr& cookie) { OutgoingConnectionFactoryPtr connectionFactory = _instance->outgoingConnectionFactory(); |