From: Axel S. <A....@ke...> - 2007-07-16 10:33:32
|
Sun Jul 15 09:35:52 PDT 2007 A....@ke... * Add missing case in Drag. Fix documentation. hunk ./gtk/Graphics/UI/Gtk/General/Drag.chs.pp 246 +dragDestFindTarget widget context Nothing = do + ttPtr <- + {# call gtk_drag_dest_find_target #} + (toWidget widget) + (toDragContext context) + (TargetList nullForeignPtr) + if ttPtr==nullPtr then return Nothing else return (Just (TargetTag ttPtr)) +[_^I_][_$_] hunk ./gtk/Graphics/UI/Gtk/General/Drag.chs.pp 285 --- | Add image targets supported by the selection mechanism to the target --- list of the drag source. The targets are added with an 'InfoId' of 0. If --- you need another value, use 'Graphics.UI.Gtk.General.Selection.targetListAddTextTargets' and +-- | Add image targets supported by the selection mechanism to the target list +-- of the drag source. The targets are added with an 'InfoId' of 0. If you +-- need another value, use +-- 'Graphics.UI.Gtk.General.Selection.targetListAddTextTargets' and hunk ./gtk/Graphics/UI/Gtk/General/Drag.chs.pp 297 --- | Add URI targets supported by the selection mechanism to the target --- list of the drag source. The targets are added with an 'InfoId' of 0. If --- you need another value, use 'Graphics.UI.Gtk.General.Selection.targetListAddTextTargets' and +-- | Add URI targets supported by the selection mechanism to the target list +-- of the drag source. The targets are added with an 'InfoId' of 0. If you +-- need another value, use +-- 'Graphics.UI.Gtk.General.Selection.targetListAddTextTargets' and |