diff options
Diffstat (limited to 'cpp/src/slice2javae/Gen.cpp')
-rw-r--r-- | cpp/src/slice2javae/Gen.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/slice2javae/Gen.cpp b/cpp/src/slice2javae/Gen.cpp index ce10208c083..2b0b0105fbd 100644 --- a/cpp/src/slice2javae/Gen.cpp +++ b/cpp/src/slice2javae/Gen.cpp @@ -2337,7 +2337,7 @@ Slice::Gen::HelperVisitor::visitClassDefStart(const ClassDefPtr& p) out << nl << name << "Prx d = null;"; out << nl << "if(b != null)"; out << sb; - out << nl << "Ice.ObjectPrx bb = b.ice_newFacet(f);"; + out << nl << "Ice.ObjectPrx bb = b.ice_facet(f);"; out << nl << "try"; out << sb; out << nl << "if(bb.ice_isA(\"" << scoped << "\"))"; @@ -2360,7 +2360,7 @@ Slice::Gen::HelperVisitor::visitClassDefStart(const ClassDefPtr& p) out << nl << name << "Prx d = null;"; out << nl << "if(b != null)"; out << sb; - out << nl << "Ice.ObjectPrx bb = b.ice_newFacet(f);"; + out << nl << "Ice.ObjectPrx bb = b.ice_facet(f);"; out << nl << "try"; out << sb; out << nl << "if(bb.ice_isA(\"" << scoped << "\", ctx))"; @@ -2394,7 +2394,7 @@ Slice::Gen::HelperVisitor::visitClassDefStart(const ClassDefPtr& p) out << nl << name << "Prx d = null;"; out << nl << "if(b != null)"; out << sb; - out << nl << "Ice.ObjectPrx bb = b.ice_newFacet(f);"; + out << nl << "Ice.ObjectPrx bb = b.ice_facet(f);"; out << nl << name << "PrxHelper h = new " << name << "PrxHelper();"; out << nl << "h.__copyFrom(bb);"; out << nl << "d = h;"; |