summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich <fheidric>2004-05-26 22:52:22 +0000
committerFelipe Heidrich <fheidric>2004-05-26 22:52:22 +0000
commit9fdb486ee922c361b3978f7de59546a364dc532c (patch)
tree4b41afa05cb4dbb56d32f1c1607cf60a8e4b82be
parente4c9aeb111236ba133197a761c1ece6393dd4ea5 (diff)
downloadeclipse.platform.swt-9fdb486ee922c361b3978f7de59546a364dc532c.tar.gz
eclipse.platform.swt-9fdb486ee922c361b3978f7de59546a364dc532c.tar.xz
eclipse.platform.swt-9fdb486ee922c361b3978f7de59546a364dc532c.zip
64216
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java
index c006501702..cdd3820e60 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/TableItem.java
@@ -382,7 +382,6 @@ public Image getImage () {
public Image getImage (int index) {
checkWidget ();
if (!(0 <= index && index <= parent.columnCount )) return null;
- if (index == 0) return super.getImage ();
int /*long*/ parentHandle = parent.handle;
int /*long*/ column = OS.gtk_tree_view_get_column (parentHandle, index);
if (column == 0) return null;
@@ -524,7 +523,6 @@ public String getText () {
public String getText (int index) {
checkWidget ();
if (!(0 <= index && index <= parent.columnCount )) return "";
- if (index == 0) return super.getText();
int /*long*/ parentHandle = parent.handle;
int /*long*/ column = OS.gtk_tree_view_get_column (parentHandle, index);
if (column == 0) error(SWT.ERROR_CANNOT_GET_TEXT);
@@ -855,9 +853,6 @@ public void setImage (int index, Image image) {
error(SWT.ERROR_INVALID_ARGUMENT);
}
if (!(0 <= index && index <= parent.columnCount )) return;
- if (index == 0) {
- super.setImage (image);
- }
int /*long*/ parentHandle = parent.handle;
int /*long*/ column = OS.gtk_tree_view_get_column (parentHandle, index);
if (column == 0) return;
@@ -937,9 +932,6 @@ public void setText (int index, String string) {
checkWidget ();
if (string == null) error (SWT.ERROR_NULL_ARGUMENT);
if (!(0 <= index && index <= parent.columnCount )) return;
- if (index == 0) {
- super.setText (string);
- }
int /*long*/ parentHandle = parent.handle;
int /*long*/ column = OS.gtk_tree_view_get_column (parentHandle, index);
if (column == 0) return;