summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe <gheorghe>2007-09-07 13:42:09 +0000
committerBogdan Gheorghe <gheorghe>2007-09-07 13:42:09 +0000
commit62c32f10f7bbf9398df19b0e066439d5edf4f386 (patch)
treea1e429b38662e0e32b20bd773614064b87ee001b
parent63adc34eca1b01ca15ff13fb5196458a9ee906fe (diff)
downloadeclipse.platform.swt-Root_flex_work.tar.gz
eclipse.platform.swt-Root_flex_work.tar.xz
eclipse.platform.swt-Root_flex_work.zip
Fixed Win64 compile error in WM_LBUTTONDOWNRoot_flex_work
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java
index 9ffd152dec..7c41590b9f 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java
@@ -592,7 +592,7 @@ LRESULT WM_LBUTTONDOWN (int /*long*/ wParam, int /*long*/ lParam) {
int /*long*/ imeWnd = OS.ImmGetDefaultIMEWnd (handle);
int offset = event.index + event.trailing;
int trailing = event.trailing > 0 ? 1 : 2;
- int param = OS.MAKEWPARAM (OS.MAKEWORD (OS.IMEMOUSE_LDOWN, trailing), offset);
+ int /*long*/ param = OS.MAKEWPARAM (OS.MAKEWORD (OS.IMEMOUSE_LDOWN, trailing), offset);
OS.SendMessage (imeWnd, WM_MSIME_MOUSE, param, hIMC);
} else {
OS.ImmNotifyIME (hIMC, OS.NI_COMPOSITIONSTR, OS.CPS_COMPLETE, 0);