mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 16:50:58 +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
c86eddb853
commit
692833df3b
1 changed files with 6 additions and 6 deletions
|
@ -1682,38 +1682,38 @@ bases:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NSNEXTSTEPStringEncoding:
|
case NSNEXTSTEPStringEncoding:
|
||||||
base = (unichar)Next_conv_base;
|
base = Next_conv_base;
|
||||||
table = Next_uni_to_char_table;
|
table = Next_uni_to_char_table;
|
||||||
tsize = Next_uni_to_char_table_size;
|
tsize = Next_uni_to_char_table_size;
|
||||||
goto tables;
|
goto tables;
|
||||||
|
|
||||||
case NSISOCyrillicStringEncoding:
|
case NSISOCyrillicStringEncoding:
|
||||||
base = (unichar)Cyrillic_conv_base;
|
base = Cyrillic_conv_base;
|
||||||
table = Cyrillic_uni_to_char_table;
|
table = Cyrillic_uni_to_char_table;
|
||||||
tsize = Cyrillic_uni_to_char_table_size;
|
tsize = Cyrillic_uni_to_char_table_size;
|
||||||
goto tables;
|
goto tables;
|
||||||
|
|
||||||
case NSISOLatin2StringEncoding:
|
case NSISOLatin2StringEncoding:
|
||||||
base = (unichar)Latin2_conv_base;
|
base = Latin2_conv_base;
|
||||||
table = Latin2_uni_to_char_table;
|
table = Latin2_uni_to_char_table;
|
||||||
tsize = Latin2_uni_to_char_table_size;
|
tsize = Latin2_uni_to_char_table_size;
|
||||||
goto tables;
|
goto tables;
|
||||||
|
|
||||||
case NSISOLatin9StringEncoding:
|
case NSISOLatin9StringEncoding:
|
||||||
base = (unichar)Latin9_conv_base;
|
base = Latin9_conv_base;
|
||||||
table = Latin9_uni_to_char_table;
|
table = Latin9_uni_to_char_table;
|
||||||
tsize = Latin9_uni_to_char_table_size;
|
tsize = Latin9_uni_to_char_table_size;
|
||||||
goto tables;
|
goto tables;
|
||||||
|
|
||||||
case NSISOThaiStringEncoding:
|
case NSISOThaiStringEncoding:
|
||||||
base = (unichar)Thai_conv_base;
|
base = Thai_conv_base;
|
||||||
table = Thai_uni_to_char_table;
|
table = Thai_uni_to_char_table;
|
||||||
tsize = Thai_uni_to_char_table_size;
|
tsize = Thai_uni_to_char_table_size;
|
||||||
goto tables;
|
goto tables;
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
case NSSymbolStringEncoding:
|
case NSSymbolStringEncoding:
|
||||||
base = (unichar)Symbol_conv_base;
|
base = Symbol_conv_base;
|
||||||
table = Symbol_uni_to_char_table;
|
table = Symbol_uni_to_char_table;
|
||||||
tsize = Symbol_uni_to_char_table_size;
|
tsize = Symbol_uni_to_char_table_size;
|
||||||
goto tables;
|
goto tables;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue