summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed <ggayed>2007-08-27 13:43:45 +0000
committerGrant Gayed <ggayed>2007-08-27 13:43:45 +0000
commit6975e84e525d9d282bedb5ee39d6c4bbabdc7a27 (patch)
treedc28b82975d1f8d2827b7121f2d0faf8f553a161
parent5c92769577860a79b8581e53cf90584b8a7ec4e8 (diff)
downloadeclipse.platform.swt-6975e84e525d9d282bedb5ee39d6c4bbabdc7a27.tar.gz
eclipse.platform.swt-6975e84e525d9d282bedb5ee39d6c4bbabdc7a27.tar.xz
eclipse.platform.swt-6975e84e525d9d282bedb5ee39d6c4bbabdc7a27.zip
fix for 64-bit
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
index 154921a532..015cdd247d 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Text.java
@@ -173,7 +173,7 @@ int /*long*/ callWindowProc (int /*long*/ hwnd, int msg, int /*long*/ wParam, in
break;
}
}
- int code = OS.CallWindowProc (EditProc, hwnd, msg, wParam, lParam);
+ int /*long*/ code = OS.CallWindowProc (EditProc, hwnd, msg, wParam, lParam);
switch (msg) {
case OS.WM_HSCROLL:
case OS.WM_VSCROLL: {