diff options
Diffstat (limited to 'cpp/src/Ice/ConnectionI.cpp')
-rw-r--r-- | cpp/src/Ice/ConnectionI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp index 7f04c78019e..7d1303a00ca 100644 --- a/cpp/src/Ice/ConnectionI.cpp +++ b/cpp/src/Ice/ConnectionI.cpp @@ -826,7 +826,7 @@ Ice::ConnectionI::flushBatchRequests() AsyncResultPtr Ice::ConnectionI::begin_flushBatchRequests() { - return begin_flushBatchRequestsInternal(__dummyCallback, 0); + return __begin_flushBatchRequests(__dummyCallback, 0); } namespace @@ -839,18 +839,18 @@ const ::std::string __flushBatchRequests_name = "flushBatchRequests"; AsyncResultPtr Ice::ConnectionI::begin_flushBatchRequests(const CallbackPtr& cb, const LocalObjectPtr& cookie) { - return begin_flushBatchRequestsInternal(cb, cookie); + return __begin_flushBatchRequests(cb, cookie); } AsyncResultPtr Ice::ConnectionI::begin_flushBatchRequests(const Callback_Connection_flushBatchRequestsPtr& cb, const LocalObjectPtr& cookie) { - return begin_flushBatchRequestsInternal(cb, cookie); + return __begin_flushBatchRequests(cb, cookie); } AsyncResultPtr -Ice::ConnectionI::begin_flushBatchRequestsInternal(const CallbackBasePtr& cb, const LocalObjectPtr& cookie) +Ice::ConnectionI::__begin_flushBatchRequests(const CallbackBasePtr& cb, const LocalObjectPtr& cookie) { ConnectionBatchOutgoingAsyncPtr result = new ConnectionBatchOutgoingAsync(this, _communicator, _instance, __flushBatchRequests_name, cb, cookie); |