Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-06-17 15:08:34 +0000
committerslewis2005-06-17 15:08:34 +0000
commita69844bbaa26bc604b5d0ec985a261c874233359 (patch)
treefe83b4fe2c3591452020ce3f15b51871cc92b548
parent4b3a85e05c19c7d3c8da0204301b775106f1c1a3 (diff)
downloadorg.eclipse.ecf-a69844bbaa26bc604b5d0ec985a261c874233359.tar.gz
org.eclipse.ecf-a69844bbaa26bc604b5d0ec985a261c874233359.tar.xz
org.eclipse.ecf-a69844bbaa26bc604b5d0ec985a261c874233359.zip
Small change to UI for discovery view
-rw-r--r--framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/DiscoveryView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/DiscoveryView.java b/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/DiscoveryView.java
index efc4e8119..0db036cd7 100644
--- a/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/DiscoveryView.java
+++ b/framework/bundles/org.eclipse.ecf.ui/src/org/eclipse/ecf/ui/views/DiscoveryView.java
@@ -138,7 +138,7 @@ public class DiscoveryView extends ViewPart {
}
private void initialize() {
invisibleRoot = new TreeParent(null,"",null);
- root = new TreeParent(null,"Discovered Service Types",null);
+ root = new TreeParent(null,"Services",null);
invisibleRoot.addChild(root);
}
void replaceOrAdd(TreeParent top, TreeParent newEntry) {

Back to the top