summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/ConnectionAsync.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-07-28 10:40:12 +0200
committerBenoit Foucher <benoit@zeroc.com>2014-07-28 10:40:12 +0200
commit0a3d021ac4e09d373925cbdc01d52b725603bca0 (patch)
tree51d431497165078c6aa9768e457a683d62c906ca /cpp/include/Ice/ConnectionAsync.h
parentFixes for Ruby x64 on Windows + MinGW cleanups (diff)
downloadice-0a3d021ac4e09d373925cbdc01d52b725603bca0.tar.bz2
ice-0a3d021ac4e09d373925cbdc01d52b725603bca0.tar.xz
ice-0a3d021ac4e09d373925cbdc01d52b725603bca0.zip
Fixed #2 of ICE-5594: code style for CallbackBase class
Diffstat (limited to 'cpp/include/Ice/ConnectionAsync.h')
-rw-r--r--cpp/include/Ice/ConnectionAsync.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/Ice/ConnectionAsync.h b/cpp/include/Ice/ConnectionAsync.h
index 4275bdf9aa8..dbaea54374a 100644
--- a/cpp/include/Ice/ConnectionAsync.h
+++ b/cpp/include/Ice/ConnectionAsync.h
@@ -32,7 +32,7 @@ public:
{
}
- virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
+ virtual void completed(const ::Ice::AsyncResultPtr& __result) const
{
::Ice::ConnectionPtr __con = __result->getConnection();
assert(__con);
@@ -43,7 +43,7 @@ public:
}
catch(const ::Ice::Exception& ex)
{
- ::IceInternal::CallbackNC<T>::__exception(__result, ex);
+ ::IceInternal::CallbackNC<T>::exception(__result, ex);
}
}
};
@@ -79,7 +79,7 @@ public:
{
}
- virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
+ virtual void completed(const ::Ice::AsyncResultPtr& __result) const
{
::Ice::ConnectionPtr __con = __result->getConnection();
assert(__con);
@@ -90,7 +90,7 @@ public:
}
catch(const ::Ice::Exception& ex)
{
- ::IceInternal::Callback<T, CT>::__exception(__result, ex);
+ ::IceInternal::Callback<T, CT>::exception(__result, ex);
}
}
};