[Webkit-unassigned] [Bug 23642] [GTK] Drag and drop support

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Mar 7 12:47:17 PST 2009


https://bugs.webkit.org/show_bug.cgi?id=23642





------- Comment #7 from xan.lopez at gmail.com  2009-03-07 12:47 PDT -------
(In reply to comment #5)
> Created an attachment (id=28123)
 --> (https://bugs.webkit.org/attachment.cgi?id=28123&action=view) [review]
> The drag clipboard
> 
> Implements a new container, able to hold multiple types of data, which is
> useful for storing drag data.
> 

+    static DragClipboard* clipboard = 0;
+
+    if (!clipboard)
+        clipboard = new DragClipboard;

can simply do:

static DragClipboard* clipboard = new DragClipboard;


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list