diff options
author | Michi Henning <michi@zeroc.com> | 2004-09-15 03:46:39 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-09-15 03:46:39 +0000 |
commit | fdbc24323f323a8fd09b1f1a81eb4382575a2827 (patch) | |
tree | 5476d24c8a22831623ed32dc7fb1af6f7443375a /cpp/src/slice2vb/Gen.cpp | |
parent | Fixed server config (diff) | |
download | ice-fdbc24323f323a8fd09b1f1a81eb4382575a2827.tar.bz2 ice-fdbc24323f323a8fd09b1f1a81eb4382575a2827.tar.xz ice-fdbc24323f323a8fd09b1f1a81eb4382575a2827.zip |
*** empty log message ***
Diffstat (limited to 'cpp/src/slice2vb/Gen.cpp')
-rwxr-xr-x | cpp/src/slice2vb/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2vb/Gen.cpp b/cpp/src/slice2vb/Gen.cpp index b30fae32c3e..f2dbc084451 100755 --- a/cpp/src/slice2vb/Gen.cpp +++ b/cpp/src/slice2vb/Gen.cpp @@ -2616,7 +2616,7 @@ Slice::Gen::TypesVisitor::visitConst(const ConstPtr& p) string name = fixId(p->name()); _out << sp << nl << "Public NotInheritable Class " << name; _out.inc(); - _out << nl << "ReadOnly " << name << " As " << typeToString(p->type()) << " = "; + _out << nl << "Public Const value As " << typeToString(p->type()) << " = "; BuiltinPtr bp = BuiltinPtr::dynamicCast(p->type()); if(bp && bp->kind() == Builtin::KindString) { |