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/ConnectionI.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/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); |