Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java
index 82a96b7b1e..672b026229 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TransferData.java
@@ -87,7 +87,7 @@ public class TransferData {
* within the packages provided by SWT. It is not available on all
* platforms and should never be accessed from application code.
* </p>
- * <p>The value of result is 1 if the conversion was successful.
+ * <p>The value of result is 1 if the conversion was successful.
* The value of result is 0 if the conversion failed.</p>
*
* @noreference This field is not intended to be referenced by clients.
@@ -114,8 +114,8 @@ public class TransferData {
if (data1 == null || data2 == null) return false;
return (data1.type == data2.type &&
data1.formatetc.cfFormat == data2.formatetc.cfFormat &&
- data1.formatetc.dwAspect == data2.formatetc.dwAspect &&
- data1.formatetc.tymed == data2.formatetc.tymed);
+ data1.formatetc.dwAspect == data2.formatetc.dwAspect &&
+ data1.formatetc.tymed == data2.formatetc.tymed);
}
}

Back to the top