summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2009-04-16 14:23:40 +0000
committerSilenio Quarti <silenio>2009-04-16 14:23:40 +0000
commit0140f8741da157a1246bb0e7387bc197716afd7f (patch)
tree85ef7b1a7f411c99eba5293599395e76deb491a8 /bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java
parent6da659a75a41e17f0f4632fbd4e9a4a71dad4a1d (diff)
downloadeclipse.platform.swt-0140f8741da157a1246bb0e7387bc197716afd7f.tar.gz
eclipse.platform.swt-0140f8741da157a1246bb0e7387bc197716afd7f.tar.xz
eclipse.platform.swt-0140f8741da157a1246bb0e7387bc197716afd7f.zip
create main menu without loading nib
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java
index d23ba238ca..9bddd8a614 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTableView.java
@@ -214,6 +214,10 @@ public void setHighlightedTableColumn(NSTableColumn tc) {
OS.objc_msgSend(this.id, OS.sel_setHighlightedTableColumn_, tc != null ? tc.id : 0);
}
+public void setIndicatorImage(NSImage anImage, NSTableColumn tc) {
+ OS.objc_msgSend(this.id, OS.sel_setIndicatorImage_inTableColumn_, anImage != null ? anImage.id : 0, tc != null ? tc.id : 0);
+}
+
public void setIntercellSpacing(NSSize aSize) {
OS.objc_msgSend(this.id, OS.sel_setIntercellSpacing_, aSize);
}