Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » What is "CodePage" value for HPUX ?
What is "CodePage" value for HPUX ? [message #444294] Mon, 11 October 2004 13:32 Go to next message
Ragav is currently offline RagavFriend
Messages: 20
Registered: July 2009
Junior Member
Hi,

In the 3.1 stream, I find that the following file
Converter.java[org.eclipse.swt] has an if statement

if
<---- ----->

else {
if (OS.IsLinux) CodePage = "ISO-8859-1";
else if (OS.IsAIX) CodePage = "ISO8859-1";
else if (OS.IsSunOS) CodePage = "8859-1";
else CodePage = "iso8859_1";

Should the value of CodePage equals iso8859_1 for HPUX? Or should this be
set to some other value?

Thanks in advance,
Ragavendran.
Re: What is "CodePage" value for HPUX ? [message #444441 is a reply to message #444294] Tue, 12 October 2004 18:57 Go to previous message
Grant Gayed is currently offline Grant GayedFriend
Messages: 2150
Registered: July 2009
Senior Member
Ragavendran,

iso8859_1 should be the correct value (ie.- the final "else" case is
equivalent to "else if (OS.IsHPUX)" since all of the other supported motif
platforms are covered in the previous else-if's).

Grant

"Ragavendran" <ragavk@india.hp.com> wrote in message
news:cke20u$gfa$1@eclipse.org...
> Hi,
>
> In the 3.1 stream, I find that the following file
> Converter.java[org.eclipse.swt] has an if statement
>
> if
> <---- ----->
>
> else {
> if (OS.IsLinux) CodePage = "ISO-8859-1";
> else if (OS.IsAIX) CodePage = "ISO8859-1";
> else if (OS.IsSunOS) CodePage = "8859-1";
> else CodePage = "iso8859_1";
>
> Should the value of CodePage equals iso8859_1 for HPUX? Or should this be
> set to some other value?
>
> Thanks in advance,
> Ragavendran.
>
Previous Topic:can anyone use wizard ?
Next Topic:ComboboxPropertyDescriptor
Goto Forum:
  


Current Time: Fri Apr 26 16:44:07 GMT 2024

Powered by FUDForum. Page generated in 0.02975 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top