summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/slice2cppe/Gen.cpp2
-rw-r--r--cpp/src/slice2javae/Gen.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cppe/Gen.cpp b/cpp/src/slice2cppe/Gen.cpp
index a7d2dd6e052..c9e77de1445 100644
--- a/cpp/src/slice2cppe/Gen.cpp
+++ b/cpp/src/slice2cppe/Gen.cpp
@@ -1495,7 +1495,7 @@ Slice::Gen::ProxyVisitor::visitOperation(const OperationPtr& p)
C << nl << "__checkTwowayOnly(\"" << name << "\");";
}
C << nl << "static const ::std::string __operation(\"" << p->name() << "\");";
- C << nl << "::Ice::ConnectionPtr __connection = ice_connection();";
+ C << nl << "::Ice::ConnectionPtr __connection = ice_getConnection();";
C << nl << "::IceInternal::Outgoing __outS(__connection.get(), _reference.get(), __operation, "
<< "static_cast< ::Ice::OperationMode>(" << p->mode() << "), __ctx);";
if(!inParams.empty())
diff --git a/cpp/src/slice2javae/Gen.cpp b/cpp/src/slice2javae/Gen.cpp
index a4a05475db1..b8ad345a98d 100644
--- a/cpp/src/slice2javae/Gen.cpp
+++ b/cpp/src/slice2javae/Gen.cpp
@@ -2271,7 +2271,7 @@ Slice::Gen::HelperVisitor::visitClassDefStart(const ClassDefPtr& p)
{
out << nl << "__checkTwowayOnly(\"" << opName << "\");";
}
- out << nl << "Ice.Connection __connection = ice_connection();";
+ out << nl << "Ice.Connection __connection = ice_getConnection();";
out << nl << "IceInternal.Outgoing __og = __connection.getOutgoing(_reference, \"" << op->name() << "\", "
<< sliceModeToIceMode(op) << ", __ctx);";
out << nl << "try";