mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
In GSFromUnicode() removed type cast of *_conv_base as the
gcc 3.3 compiler complained about it. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16885 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0226272aed
commit
0bde9c0b94
1 changed files with 6 additions and 6 deletions
|
@ -1682,38 +1682,38 @@ bases:
|
|||
break;
|
||||
|
||||
case NSNEXTSTEPStringEncoding:
|
||||
base = (unichar)Next_conv_base;
|
||||
base = Next_conv_base;
|
||||
table = Next_uni_to_char_table;
|
||||
tsize = Next_uni_to_char_table_size;
|
||||
goto tables;
|
||||
|
||||
case NSISOCyrillicStringEncoding:
|
||||
base = (unichar)Cyrillic_conv_base;
|
||||
base = Cyrillic_conv_base;
|
||||
table = Cyrillic_uni_to_char_table;
|
||||
tsize = Cyrillic_uni_to_char_table_size;
|
||||
goto tables;
|
||||
|
||||
case NSISOLatin2StringEncoding:
|
||||
base = (unichar)Latin2_conv_base;
|
||||
base = Latin2_conv_base;
|
||||
table = Latin2_uni_to_char_table;
|
||||
tsize = Latin2_uni_to_char_table_size;
|
||||
goto tables;
|
||||
|
||||
case NSISOLatin9StringEncoding:
|
||||
base = (unichar)Latin9_conv_base;
|
||||
base = Latin9_conv_base;
|
||||
table = Latin9_uni_to_char_table;
|
||||
tsize = Latin9_uni_to_char_table_size;
|
||||
goto tables;
|
||||
|
||||
case NSISOThaiStringEncoding:
|
||||
base = (unichar)Thai_conv_base;
|
||||
base = Thai_conv_base;
|
||||
table = Thai_uni_to_char_table;
|
||||
tsize = Thai_uni_to_char_table_size;
|
||||
goto tables;
|
||||
|
||||
#if 0
|
||||
case NSSymbolStringEncoding:
|
||||
base = (unichar)Symbol_conv_base;
|
||||
base = Symbol_conv_base;
|
||||
table = Symbol_uni_to_char_table;
|
||||
tsize = Symbol_uni_to_char_table_size;
|
||||
goto tables;
|
||||
|
|
Loading…
Reference in a new issue