summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java
diff options
context:
space:
mode:
authorChristophe Cornu <ccornu>2004-03-01 21:27:55 +0000
committerChristophe Cornu <ccornu>2004-03-01 21:27:55 +0000
commit8e8123582553dc792749aa213caff99f2409a953 (patch)
tree7bfad6d04815b6ae6214d64392fe988c23bec786 /bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java
parentfddc0cdeb3787496a24c9e7901f9b6246b928874 (diff)
downloadeclipse.platform.swt-8e8123582553dc792749aa213caff99f2409a953.tar.gz
eclipse.platform.swt-8e8123582553dc792749aa213caff99f2409a953.tar.xz
eclipse.platform.swt-8e8123582553dc792749aa213caff99f2409a953.zip
64 bit
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java
index b51f58de13..c0c70bc9bc 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/ImageList.java
@@ -101,7 +101,7 @@ public int indexOf (Image image) {
return -1;
}
-int indexOf (int pixbuf) {
+int indexOf (int /*long*/ pixbuf) {
if (pixbuf == 0) return -1;
for (int index=0; index<images.length; index++) {
if (pixbuf == pixbufs [index]) return index;