clipboard owner

Ulrich Czekalla ulrich.czekalla at utoronto.ca
Mon Aug 23 10:18:09 CDT 2004


ChangeLog:
        Ulrich Czekalla <ulrich at codeweavers.com>
        The clipboard owner can be set by the thread
        that has the clipboard open
-------------- next part --------------
Index: server/clipboard.c
===================================================================
RCS file: /home/wine/wine/server/clipboard.c,v
retrieving revision 1.3
diff -u -r1.3 clipboard.c
--- server/clipboard.c	25 Jun 2004 02:55:37 -0000	1.3
+++ server/clipboard.c	23 Aug 2004 15:03:42 -0000
@@ -80,7 +80,7 @@
 
 static int set_clipboard_owner(user_handle_t win, int clear)
 {
-    if (cbowner && cbowner != current)
+    if (cbthread && cbthread != current)
     {
         set_error(STATUS_WAS_LOCKED);
         return 0;


More information about the wine-patches mailing list