summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/CPlusPlusUtil.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-03-16 04:16:50 +0000
committerMark Spruiell <mes@zeroc.com>2002-03-16 04:16:50 +0000
commitaf701afba691dfc175d8bc9d8b1e886964d99a39 (patch)
treef8688dd34bbae273310dfe049c100f2398953242 /cpp/src/Slice/CPlusPlusUtil.cpp
parentChanged the names of the Parser and ErrorReporter classes to conform with (diff)
downloadice-af701afba691dfc175d8bc9d8b1e886964d99a39.tar.bz2
ice-af701afba691dfc175d8bc9d8b1e886964d99a39.tar.xz
ice-af701afba691dfc175d8bc9d8b1e886964d99a39.zip
removing __getClassIds
Diffstat (limited to 'cpp/src/Slice/CPlusPlusUtil.cpp')
-rw-r--r--cpp/src/Slice/CPlusPlusUtil.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Slice/CPlusPlusUtil.cpp b/cpp/src/Slice/CPlusPlusUtil.cpp
index 363ad1ca391..da0c7a37fe9 100644
--- a/cpp/src/Slice/CPlusPlusUtil.cpp
+++ b/cpp/src/Slice/CPlusPlusUtil.cpp
@@ -300,7 +300,7 @@ Slice::writeMarshalUnmarshalCode(Output& out, const TypePtr& type, const string&
}
else
{
- out << nl << stream << deref << func << "::Ice::Object::__classIds[0], 0, " << param << ");";
+ out << nl << stream << deref << func << "::Ice::Object::ice_staticId(), 0, " << param << ");";
}
return;
}
@@ -331,7 +331,7 @@ Slice::writeMarshalUnmarshalCode(Output& out, const TypePtr& type, const string&
factory = cl->scoped();
factory += "::_factory";
type = cl->scoped();
- type += "::__classIds[0]";
+ type += "::ice_staticId()";
}
else
{
@@ -504,7 +504,7 @@ Slice::writeGenericMarshalUnmarshalCode(Output& out, const TypePtr& type, const
else
{
out << nl << param << " = " << stream << deref << streamFunc << "(" << tagName
- << ", ::Ice::Object::__classIds[0], 0);";
+ << ", ::Ice::Object::ice_staticId(), 0);";
}
return;
}
@@ -544,7 +544,7 @@ Slice::writeGenericMarshalUnmarshalCode(Output& out, const TypePtr& type, const
factory = cl->scoped();
factory += "::_factory";
type = cl->scoped();
- type += "::__classIds[0]";
+ type += "::ice_staticId()";
}
else
{