summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog-99c48
-rw-r--r--TAO/tao/ORB_Core.cpp2
2 files changed, 28 insertions, 22 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 8aa81825cd6..bc51fe1f550 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,29 +1,35 @@
+Mon Jul 12 13:54:45 1999 David L. Levine <levine@cs.wustl.edu>
+
+ * tao/ORB_Core.cpp (TAO_ORB_Core): fixed MVS "from" codeset
+ translator. Thanks to Jim Rogers <jrogers@viasoft.com> for
+ this fix.
+
Mon Jul 12 12:58:01 1999 Jeff Parsons <parsons@cs.wustl.edu>
- * TAO_IDL/util/utl_scope.cpp:
- Corrected a mistake in the logic that caused a
- failed lookup of a field to be given the type of
- the previous field (if any). As a by-product, the
- use of 'int' as a type (illegal) causes a lookup
- error output for '_cxx_int'. This is not wholly
- informative, but the corresponding syntax error
- (based on the parse state) is 'illegal component
- in scoped name', which is even less informative.
- Thanks to Surovegin Eugene <Surovegin@SoftLab.RU>
- for pointing out the code generation problem.
+ * TAO_IDL/util/utl_scope.cpp:
+ Corrected a mistake in the logic that caused a
+ failed lookup of a field to be given the type of
+ the previous field (if any). As a by-product, the
+ use of 'int' as a type (illegal) causes a lookup
+ error output for '_cxx_int'. This is not wholly
+ informative, but the corresponding syntax error
+ (based on the parse state) is 'illegal component
+ in scoped name', which is even less informative.
+ Thanks to Surovegin Eugene <Surovegin@SoftLab.RU>
+ for pointing out the code generation problem.
Mon Jul 12 12:25:53 1999 Nanbor Wang <nanbor@cs.wustl.edu>
- * orbsvcs/orbsvcs/orbsvcs.dsp:
- * orbsvcs/orbsvcs/orbsvcs_static.dsp: Fixed some broken idl
- flags. Added -I../../tao flag to when compiling all idl files
- so people won't have trouble compiling orbsvcs even when they
- don't have ACE_ROOT or TAO_ROOT defined.
- Thanks to John Morey <jmorey@tbi.com> for suggesting this.
-
- * TAO-INSTALL.html:
- * docs/compiler.html: Added more explanation about setting
- TAO_ROOT or ACE_ROOT.
+ * orbsvcs/orbsvcs/orbsvcs.dsp:
+ * orbsvcs/orbsvcs/orbsvcs_static.dsp: Fixed some broken idl
+ flags. Added -I../../tao flag to when compiling all idl files
+ so people won't have trouble compiling orbsvcs even when they
+ don't have ACE_ROOT or TAO_ROOT defined.
+ Thanks to John Morey <jmorey@tbi.com> for suggesting this.
+
+ * TAO-INSTALL.html:
+ * docs/compiler.html: Added more explanation about setting
+ TAO_ROOT or ACE_ROOT.
Mon Jul 12 10:47:18 1999 David L. Levine <levine@cs.wustl.edu>
diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp
index d794632a862..9177e30b9e7 100644
--- a/TAO/tao/ORB_Core.cpp
+++ b/TAO/tao/ORB_Core.cpp
@@ -83,7 +83,7 @@ TAO_ORB_Core::TAO_ORB_Core (const char *orbid)
this->tm_.wait_on_exit (0);
#if defined(ACE_MVS)
- ACE_NEW (this->from_iso8859_, ACE_ISO8859_IBM1047);
+ ACE_NEW (this->from_iso8859_, ACE_IBM1047_ISO8859);
ACE_NEW (this->to_iso8859_, ACE_IBM1047_ISO8859);
#endif /* ACE_MVS */
}