summaryrefslogtreecommitdiff
path: root/cpp/src/slice2cs
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2014-10-28 15:45:05 -0230
committerDwayne Boone <dwayne@zeroc.com>2014-10-28 15:45:05 -0230
commit8b538d8fd7d4712cd1829c91c50999598bcdd793 (patch)
tree65b1b13fd0c792a89eb65526458f0fbdc7a110e3 /cpp/src/slice2cs
parentMinor improvement to IceGridGUI gradle file (diff)
downloadice-8b538d8fd7d4712cd1829c91c50999598bcdd793.tar.bz2
ice-8b538d8fd7d4712cd1829c91c50999598bcdd793.tar.xz
ice-8b538d8fd7d4712cd1829c91c50999598bcdd793.zip
ICE-5764 deprecate CollectionBase/DictionaryBase and [clr:collection]
Diffstat (limited to 'cpp/src/slice2cs')
-rw-r--r--cpp/src/slice2cs/Gen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2cs/Gen.cpp b/cpp/src/slice2cs/Gen.cpp
index 8ba2d479750..5863bb403fc 100644
--- a/cpp/src/slice2cs/Gen.cpp
+++ b/cpp/src/slice2cs/Gen.cpp
@@ -3397,7 +3397,7 @@ Slice::Gen::TypesVisitor::visitSequence(const SequencePtr& p)
_out.restoreIndent();
}
_out << nl << "public class " << name
- << " : Ice.CollectionBase<" << s << ">, _System.ICloneable";
+ << " : IceInternal.CollectionBase<" << s << ">, _System.ICloneable";
_out << sb;
_out << sp << nl << "#region Constructors";
@@ -4382,7 +4382,7 @@ Slice::Gen::TypesVisitor::visitDictionary(const DictionaryPtr& p)
_out.restoreIndent();
}
_out << nl << "public class " << name
- << " : Ice.DictionaryBase<" << ks << ", " << vs << ">, _System.ICloneable";
+ << " : IceInternal.DictionaryBase<" << ks << ", " << vs << ">, _System.ICloneable";
_out << sb;
_out << sp << nl << "#region " << name << " members";