On Mon, 2002-05-27 at 23:18, Amir Hardon wrote: > I found that setting LC_ALL and LANG to he_IL fixes this problem. > I'm not sure why(Does it make QT3 applications use iso charset?), but it > works.
Qt offers two flavors of data in the clipboard simultaneously (via QTextDrag, if you care): "PLAIN" and "text/plain" -- in the locale's encoding (check your locale's encoding by running 'locale charmap') "text/plain; charset=UTF-8" -- in the Unicode encoding, regardless of locale Most old apps will try to get PLAIN or text/plain. Unicode apps (like Qt apps, and probably Mozilla / GTK+ 2.0) would try to get the UTF-8 flavor -- so any language would be transfered flawlessly regardless of your locale. ================================================================= To unsubscribe, send mail to [EMAIL PROTECTED] with the word "unsubscribe" in the message body, e.g., run the command echo unsubscribe | mail [EMAIL PROTECTED]