diff options
author | Silenio Quarti <silenio> | 2011-03-04 20:44:01 +0000 |
---|---|---|
committer | Silenio Quarti <silenio> | 2011-03-04 20:44:01 +0000 |
commit | e646d63679f090719f41ca9ae10e1610c95f97d4 (patch) | |
tree | 174ef241d18c6054589e0b46c9237c1bc05251c4 | |
parent | 6f22938cbd7ef81aa977b611e1d837442e73821d (diff) | |
download | eclipse.platform.swt-e646d63679f090719f41ca9ae10e1610c95f97d4.tar.gz eclipse.platform.swt-e646d63679f090719f41ca9ae10e1610c95f97d4.tar.xz eclipse.platform.swt-e646d63679f090719f41ca9ae10e1610c95f97d4.zip |
64 bit problems
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java | 2 | ||||
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java index 5712ea5b46..efd4cfa22b 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Table.java @@ -2820,7 +2820,7 @@ public void setSelection (TableItem [] items) { } } -void setShouldScrollClipView(int /*long*/ id, int /*long*/ sel, boolean shouldScroll) { +void setShouldScrollClipView(int /*long*/ id, int /*long*/ sel, boolean shouldScroll) { this.shouldScroll = shouldScroll; } diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java index 273bdf4bfb..62579e8fd8 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java @@ -1850,10 +1850,10 @@ void setObjectValue(int /*long*/ id, int /*long*/ sel, int /*long*/ arg0) { callSuper(id, sel, arg0); } -void setShouldExpandItem(int /*long*/ id, int /*long*/ sel, boolean shouldExpand) { +void setShouldExpandItem(int /*long*/ id, int /*long*/ sel, boolean shouldExpand) { } -void setShouldScrollClipView(int /*long*/ id, int /*long*/ sel, boolean shouldScroll) { +void setShouldScrollClipView(int /*long*/ id, int /*long*/ sel, boolean shouldScroll) { } boolean setTabGroupFocus () { |