summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT
diff options
context:
space:
mode:
authorBilly Biggs <bbiggs>2005-09-17 15:41:44 +0000
committerBilly Biggs <bbiggs>2005-09-17 15:41:44 +0000
commit3e361ab813a7a638d05b277bc3702b22116aca11 (patch)
tree73ef28efda694a577b927adae48ff3c30cdd3a69 /bundles/org.eclipse.swt/Eclipse SWT
parent121675b54b0e2aefc5258d0d04e91fd8f03d5417 (diff)
downloadeclipse.platform.swt-3e361ab813a7a638d05b277bc3702b22116aca11.tar.gz
eclipse.platform.swt-3e361ab813a7a638d05b277bc3702b22116aca11.tar.xz
eclipse.platform.swt-3e361ab813a7a638d05b277bc3702b22116aca11.zip
64 bit fixes
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
index c14d24464a..76b8f35d83 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Tree.java
@@ -284,7 +284,7 @@ int calculateWidth (int /*long*/ column, int /*long*/ iter) {
clear (0, index, all);
}
-void clear (int parentIter, int index, boolean all) {
+void clear (int /*long*/ parentIter, int index, boolean all) {
int /*long*/ iter = OS.g_malloc (OS.GtkTreeIter_sizeof ());
OS.gtk_tree_model_iter_nth_child(modelHandle, iter, parentIter, index);
int[] value = new int[1];
@@ -2102,7 +2102,7 @@ public void setInsertMark (TreeItem item, boolean before) {
OS.gtk_tree_path_free (path [0]);
}
-void setItemCount (int parentIter, int count) {
+void setItemCount (int /*long*/ parentIter, int count) {
int itemCount = OS.gtk_tree_model_iter_n_children (modelHandle, parentIter);
if (count == itemCount) return;
boolean isVirtual = (style & SWT.VIRTUAL) != 0;