x11drv: Fixed typo in the clipboard XA_STRING handling.

This commit is contained in:
Alexandre Julliard 2006-05-17 12:55:02 +02:00
parent f6097f5b51
commit 354edc476f
1 changed files with 1 additions and 1 deletions

View File

@ -1865,7 +1865,7 @@ static int X11DRV_CLIPBOARD_QueryAvailableData(LPCLIPBOARDINFO lpcbinfo)
selectionCacheSrc = x11drv_atom(CLIPBOARD);
else
{
Atom xstr = XA_PRIMARY;
Atom xstr = XA_STRING;
/* Selection Owner doesn't understand TARGETS, try retrieving XA_STRING */
if (X11DRV_CLIPBOARD_QueryTargets(display, w, XA_PRIMARY, XA_STRING, &xe))