summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2004-02-10 04:58:09 +0000
committerSilenio Quarti <silenio>2004-02-10 04:58:09 +0000
commit49360382f6cdeecbddd5fc1c7c5cf1f2d61a1860 (patch)
treee63d5b09087a541107e477e7afdc2ac8c27fb0cd
parent26c7511bc7196918f5b39ada26ff295461cbf8cf (diff)
downloadeclipse.platform.swt-49360382f6cdeecbddd5fc1c7c5cf1f2d61a1860.tar.gz
eclipse.platform.swt-49360382f6cdeecbddd5fc1c7c5cf1f2d61a1860.tar.xz
eclipse.platform.swt-49360382f6cdeecbddd5fc1c7c5cf1f2d61a1860.zip
50107
-rw-r--r--bundles/org.eclipse.swt/.classpath_carbon_j2me1
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java4
2 files changed, 2 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/.classpath_carbon_j2me b/bundles/org.eclipse.swt/.classpath_carbon_j2me
index 902efc4ef5..a9bceeabe5 100644
--- a/bundles/org.eclipse.swt/.classpath_carbon_j2me
+++ b/bundles/org.eclipse.swt/.classpath_carbon_j2me
@@ -4,7 +4,6 @@
<classpathentry kind="src" path="Eclipse SWT/carbon"/>
<classpathentry kind="src" path="Eclipse SWT/emulated/bidi"/>
<classpathentry kind="src" path="Eclipse SWT/emulated/coolbar"/>
- <classpathentry kind="src" path="Eclipse SWT/emulated/treetable"/>
<classpathentry kind="src" path="Eclipse SWT/common"/>
<classpathentry kind="src" path="Eclipse SWT/common_j2me"/>
<classpathentry kind="src" path="Eclipse SWT PI/carbon"/>
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java b/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
index 8bca80acd8..a9a3b52e7b 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Widget.java
@@ -684,9 +684,9 @@ Rect getInset () {
String getName () {
String string = getClass ().getName ();
- int index = string.lastIndexOf(".");
+ int index = string.lastIndexOf ('.');
if (index == -1) return string;
- return string.substring(index + 1, string.length ());
+ return string.substring (index + 1, string.length ());
}
String getNameText () {