]> granicus.if.org Git - handbrake/commitdiff
WinGui: Fix a bug in the GongSolutions.Wpf.DragDrop library that was causing queue...
authorsr55 <sr55.hb@outlook.com>
Sat, 26 Jan 2013 13:19:54 +0000 (13:19 +0000)
committersr55 <sr55.hb@outlook.com>
Sat, 26 Jan 2013 13:19:54 +0000 (13:19 +0000)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5203 b64f7644-9d1e-0410-96f1-a4d463321fa5

win/CS/libraries/WPFDragDrop/GongSolutions.Wpf.DragDrop.XML
win/CS/libraries/WPFDragDrop/GongSolutions.Wpf.DragDrop.dll
win/CS/libraries/WPFDragDrop/GongSolutions.Wpf.DragDrop.pdb
win/CS/libraries/WPFDragDrop/SourceModifications.zip

index 24df8ef256843c07478cfd542cff89a19962dcb9..37d4ff9b9cdca10e462c2bc9813596f830e26544 100644 (file)
@@ -4,6 +4,35 @@
         <name>GongSolutions.Wpf.DragDrop</name>\r
     </assembly>\r
     <members>\r
+        <member name="T:GongSolutions.Wpf.DragDrop.IDropTarget">\r
+            <summary>\r
+            Interface implemented by Drop Handlers.\r
+            </summary>\r
+        </member>\r
+        <member name="M:GongSolutions.Wpf.DragDrop.IDropTarget.DragOver(GongSolutions.Wpf.DragDrop.IDropInfo)">\r
+            <summary>\r
+            Updates the current drag state.\r
+            </summary>\r
+            \r
+            <param name="dropInfo">\r
+              Information about the drag.\r
+            </param>\r
+            \r
+            <remarks>\r
+            To allow a drop at the current drag position, the <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Effects"/> property on \r
+            <paramref name="dropInfo"/> should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/>\r
+            and <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Data"/> should be set to a non-null value.\r
+            </remarks>\r
+        </member>\r
+        <member name="M:GongSolutions.Wpf.DragDrop.IDropTarget.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)">\r
+            <summary>\r
+            Performs a drop.\r
+            </summary>\r
+            \r
+            <param name="dropInfo">\r
+              Information about the drop.\r
+            </param>\r
+        </member>\r
         <member name="P:GongSolutions.Wpf.DragDrop.IDropInfo.Data">\r
             <summary>\r
             Gets the drag data.\r
             Gets th orientation of the current drop target.\r
             </summary>\r
         </member>\r
-        <member name="T:GongSolutions.Wpf.DragDrop.IDropTarget">\r
+        <member name="T:GongSolutions.Wpf.DragDrop.IDragSource">\r
             <summary>\r
-            Interface implemented by Drop Handlers.\r
+            Interface implemented by Drag Handlers.\r
             </summary>\r
         </member>\r
-        <member name="M:GongSolutions.Wpf.DragDrop.IDropTarget.DragOver(GongSolutions.Wpf.DragDrop.IDropInfo)">\r
+        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">\r
             <summary>\r
-            Updates the current drag state.\r
+            Queries whether a drag can be started.\r
             </summary>\r
             \r
-            <param name="dropInfo">\r
-              Information about the drag.\r
+            <param name="dragInfo">\r
+            Information about the drag.\r
             </param>\r
             \r
             <remarks>\r
-            To allow a drop at the current drag position, the <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Effects"/> property on \r
-            <paramref name="dropInfo"/> should be set to a value other than <see cref="F:System.Windows.DragDropEffects.None"/>\r
-            and <see cref="P:GongSolutions.Wpf.DragDrop.DropInfo.Data"/> should be set to a non-null value.\r
+            To allow a drag to be started, the <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects"/> property on <paramref name="dragInfo"/> \r
+            should be set to a value other than <see cref="!:DragDropEffects.None"/>. \r
             </remarks>\r
         </member>\r
-        <member name="M:GongSolutions.Wpf.DragDrop.IDropTarget.Drop(GongSolutions.Wpf.DragDrop.IDropInfo)">\r
+        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.Dropped(GongSolutions.Wpf.DragDrop.IDropInfo)">\r
             <summary>\r
-            Performs a drop.\r
+            Notifies the drag handler that a drop has occurred.\r
             </summary>\r
             \r
             <param name="dropInfo">\r
             will hold a ListBoxItem.\r
             </remarks>\r
         </member>\r
-        <member name="T:GongSolutions.Wpf.DragDrop.IDragSource">\r
-            <summary>\r
-            Interface implemented by Drag Handlers.\r
-            </summary>\r
-        </member>\r
-        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.StartDrag(GongSolutions.Wpf.DragDrop.IDragInfo)">\r
-            <summary>\r
-            Queries whether a drag can be started.\r
-            </summary>\r
-            \r
-            <param name="dragInfo">\r
-            Information about the drag.\r
-            </param>\r
-            \r
-            <remarks>\r
-            To allow a drag to be started, the <see cref="P:GongSolutions.Wpf.DragDrop.DragInfo.Effects"/> property on <paramref name="dragInfo"/> \r
-            should be set to a value other than <see cref="!:DragDropEffects.None"/>. \r
-            </remarks>\r
-        </member>\r
-        <member name="M:GongSolutions.Wpf.DragDrop.IDragSource.Dropped(GongSolutions.Wpf.DragDrop.IDropInfo)">\r
-            <summary>\r
-            Notifies the drag handler that a drop has occurred.\r
-            </summary>\r
-            \r
-            <param name="dropInfo">\r
-              Information about the drop.\r
-            </param>\r
-        </member>\r
     </members>\r
 </doc>\r
index 47a513ca6cfa3c2fab12ea8340cb178292682e6a..5617d91b9b4ea699a7457cc732ea239dc376c4c5 100644 (file)
Binary files a/win/CS/libraries/WPFDragDrop/GongSolutions.Wpf.DragDrop.dll and b/win/CS/libraries/WPFDragDrop/GongSolutions.Wpf.DragDrop.dll differ
index 90b4417361da3590b7c40116fa7988a17a336825..ce74a4036db0d8abdfd5b4a9a6deeef2bcd4ba79 100644 (file)
Binary files a/win/CS/libraries/WPFDragDrop/GongSolutions.Wpf.DragDrop.pdb and b/win/CS/libraries/WPFDragDrop/GongSolutions.Wpf.DragDrop.pdb differ
index a08196a6e6a6000efe725d959a1c33aaf0231474..9d050d455cf11a7bc4c8988613d54157959b4c9b 100644 (file)
Binary files a/win/CS/libraries/WPFDragDrop/SourceModifications.zip and b/win/CS/libraries/WPFDragDrop/SourceModifications.zip differ