Bug in String with unicode?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2004 at 00:51, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.207
Platform: Windows ;
Language(s) : C++ ;---------
Not all functions of String seem to be safe for use with unicode chars:
String test( 5, 11111 );
LONG Ltest = test[2];
Ltest will be 0;
String test( 5, 11111 );
test[2] = 11111;
LONG Ltest = test[2];
then Ltest will be 11111
If I use void color=#606420Insert(LONG Pos, UWORD Ch) then the inserted character also will be 0. -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/06/2004 at 04:26, xxxxxxxx wrote:
Thanks! Confirmed and reported.