Don't advertise UTF8_STRING. Use STRING instead. This gives much

better interoperability between MS Word and Star/OpenOffice when it
comes to highbit characters (åäö and friends).


git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@706 423420c4-83ab-492f-b58f-81f9feb106b5
This commit is contained in:
Erik Forsberg 2004-06-04 08:42:11 +00:00
parent 030f5f0ca1
commit 115960e2cb

View File

@ -380,7 +380,7 @@ xclip_init(void)
incr_atom = XInternAtom(g_display, "INCR", False); incr_atom = XInternAtom(g_display, "INCR", False);
targets[0] = targets_atom; targets[0] = targets_atom;
targets[1] = XInternAtom(g_display, "TEXT", False); targets[1] = XInternAtom(g_display, "TEXT", False);
targets[2] = XInternAtom(g_display, "UTF8_STRING", False); targets[2] = XInternAtom(g_display, "STRING", False);
targets[3] = XInternAtom(g_display, "text/unicode", False); targets[3] = XInternAtom(g_display, "text/unicode", False);
targets[4] = XInternAtom(g_display, "TIMESTAMP", False); targets[4] = XInternAtom(g_display, "TIMESTAMP", False);
targets[5] = XA_STRING; targets[5] = XA_STRING;