From f5301bce632c55b6080438d185acf93af6f3cf39 Mon Sep 17 00:00:00 2001 From: Kevin Barnes Date: Mon, 19 Oct 2009 21:23:20 +0000 Subject: /*long*/ --- .../org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java | 2 +- .../Eclipse SWT/cocoa/org/eclipse/swt/widgets/Widget.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java index 97b03ade85..ba7f10b0ad 100755 --- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Link.java @@ -237,7 +237,7 @@ public String getText () { return text; } -public boolean shouldDrawInsertionPoint(int id, int sel) { +boolean shouldDrawInsertionPoint(int /*long*/ id, int /*long*/ sel) { return false; } 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 ab5dd990fd..01dcd42234 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 @@ -1840,7 +1840,7 @@ int /*long*/ nextState(int /*long*/ id, int /*long*/ sel) { void updateOpenGLContext(int /*long*/ id, int /*long*/ sel, int /*long*/ notification) { } -public boolean shouldDrawInsertionPoint(int /*long*/ id, int /*long*/ sel) { +boolean shouldDrawInsertionPoint(int /*long*/ id, int /*long*/ sel) { return callSuperBoolean(id, sel); } -- cgit