Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-07-31 00:09:42 +0000
committerslewis2005-07-31 00:09:42 +0000
commitbf5c9d748135092929b12ad51add11851492416b (patch)
tree45f2200a06ac936365f7b385f96f77b67ac7e7fe
parent5e686090f42c86706e6b8b6d0d93ff247f034818 (diff)
downloadorg.eclipse.ecf-bf5c9d748135092929b12ad51add11851492416b.tar.gz
org.eclipse.ecf-bf5c9d748135092929b12ad51add11851492416b.tar.xz
org.eclipse.ecf-bf5c9d748135092929b12ad51add11851492416b.zip
Changed reference to resource bundle loading
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ClientPlugin.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ClientPlugin.java b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ClientPlugin.java
index 36162571d..2f7442903 100644
--- a/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ClientPlugin.java
+++ b/examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ClientPlugin.java
@@ -228,7 +228,7 @@ public class ClientPlugin extends AbstractUIPlugin implements
try {
if (resourceBundle == null)
resourceBundle = ResourceBundle
- .getBundle("org.eclipse.ecf.example.collab.ClientPluginResources");
+ .getBundle("org.eclipse.ecf.example.collab.ClientPlugin");
} catch (MissingResourceException x) {
resourceBundle = null;
}

Back to the top