Re: tibetan rendering support in ICU

Jens Herden <[email protected]> Tue, 2 Nov 2004 22:34:53 +0700
Newsgroups gmane.comp.lib.icu.general
Message-ID <[email protected]>
Hi!

> Any clues to what I am doing wrong would be helpful.

I did a quick look into your files and my first guess is about this:

   featureTags[idx] = tagArray[1];

Don't you need to write 

   featureTags[idx] = &tagArray[1];
there?

I saw similar code in the indic layout engine, but I might be wrong.

Jens