Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2018-07-26 08:10:57 +0000
committerLakshmi Shanmugam2018-07-28 14:15:52 +0000
commitde8d7099dd39b789b68269b4ed2d57dc5e571f7b (patch)
tree3179e62eefb6311a660b7574bbed55baf0206485 /bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java
parentd6b997b3335c79aace68153377ce8b2c2af2c1d8 (diff)
downloadeclipse.platform.swt-de8d7099dd39b789b68269b4ed2d57dc5e571f7b.tar.gz
eclipse.platform.swt-de8d7099dd39b789b68269b4ed2d57dc5e571f7b.tar.xz
eclipse.platform.swt-de8d7099dd39b789b68269b4ed2d57dc5e571f7b.zip
Bug 514191 - Bridge support files should be updated to latest macOS
supported version (10.11) Updated Cocoa classes and extras file after changes to bridgesupport files. Change-Id: I3e60736d1452ac9e062650193a6a3f258e353f55 Signed-off-by: Lakshmi Shanmugam <lshanmug@in.ibm.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java
index 451be6237a..ac51a831e9 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableColumn.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2017 IBM Corporation and others.
+ * Copyright (c) 2000, 2018 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -51,7 +51,7 @@ public void setEditable(boolean editable) {
OS.objc_msgSend(this.id, OS.sel_setEditable_, editable);
}
-public void setHeaderCell(id headerCell) {
+public void setHeaderCell(NSTableHeaderCell headerCell) {
OS.objc_msgSend(this.id, OS.sel_setHeaderCell_, headerCell != null ? headerCell.id : 0);
}

Back to the top