Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVeronika Irvine2002-02-05 19:34:09 +0000
committerVeronika Irvine2002-02-05 19:34:09 +0000
commite0a8175cd49ae7b6acd28eba25775c68c15addd2 (patch)
tree74637cac4c878a0648ab1ed823f150b49b1e4597
parentdf444100eaf890a80d3e563389466b909f93bdf6 (diff)
downloadeclipse.platform.swt-e0a8175cd49ae7b6acd28eba25775c68c15addd2.tar.gz
eclipse.platform.swt-e0a8175cd49ae7b6acd28eba25775c68c15addd2.tar.xz
eclipse.platform.swt-e0a8175cd49ae7b6acd28eba25775c68c15addd2.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java
index 64b085034f..5947b92580 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/TableCursor.java
@@ -269,7 +269,7 @@ void setRowColumn(int row, int column, boolean notify) {
if (0 <= column && column < table.getColumnCount()) {
this.row = row;
this.column = column;
- TableItem item = table.getItems()[row];
+ TableItem item = table.getItem(row);
table.showItem(item);
setBounds(item.getBounds(column));
redraw();

Back to the top