Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTill Brychcy2017-08-11 07:41:31 +0000
committerTill Brychcy2017-08-11 07:41:38 +0000
commitcbaf381a53a767d35286907bb53bde0c52f3cf1d (patch)
tree7de3744c32966c6000f69ce96c3c9176d8a333c2 /bundles/org.eclipse.swt/Eclipse SWT
parent855f01fd5f0fa60ee3ed887890a202481766dcf2 (diff)
downloadeclipse.platform.swt-cbaf381a53a767d35286907bb53bde0c52f3cf1d.tar.gz
eclipse.platform.swt-cbaf381a53a767d35286907bb53bde0c52f3cf1d.tar.xz
eclipse.platform.swt-cbaf381a53a767d35286907bb53bde0c52f3cf1d.zip
Bug 520879 - Remove System.out.println in
TableColumn.drawInteriorWithFrame_inView Change-Id: I7b995aa7358251ebe81c5e1fdda869ec9465ed96 Signed-off-by: Till Brychcy <register.eclipse@brychcy.de>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java
index 985a340c42..9fd7173ebb 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/TableColumn.java
@@ -301,7 +301,6 @@ void drawInteriorWithFrame_inView (long /*int*/ id, long /*int*/ sel, NSRect cel
boolean ascending = parent.sortDirection == SWT.UP;
if (parent.headerBackground != null || parent.headerForeground != null) {
NSRect sortIndicatorRect = headerCell.sortIndicatorRectForBounds(cellRect);
- System.out.println(sortIndicatorRect);
context.saveGraphicsState();
if (parent.headerForeground != null) {
double /*float*/ [] colorRGB = parent.headerForeground;

Back to the top