Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkgilmer2005-02-20 21:50:13 +0000
committerkgilmer2005-02-20 21:50:13 +0000
commit4a31e4f698f62479a9450ee13db0cc1242627d00 (patch)
tree4b8ed701f7c2e4704c2c89db8933b4863402537b
parent93716cfb49437ba50a8161899bc0e51849325d39 (diff)
downloadorg.eclipse.ecf-4a31e4f698f62479a9450ee13db0cc1242627d00.tar.gz
org.eclipse.ecf-4a31e4f698f62479a9450ee13db0cc1242627d00.tar.xz
org.eclipse.ecf-4a31e4f698f62479a9450ee13db0cc1242627d00.zip
Modification of person.gif for presence viewer.
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/icons/presence_member.gifbin0 -> 143 bytes
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/src/org/eclipse/ecf/example/collab/ClientPlugin.java6
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/icons/presence_member.gif b/examples/bundles/org.eclipse.ecf.example.collab/icons/presence_member.gif
new file mode 100644
index 000000000..d307b2006
--- /dev/null
+++ b/examples/bundles/org.eclipse.ecf.example.collab/icons/presence_member.gif
Binary files differ
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 19ceaf342..181b7a8b2 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
@@ -106,10 +106,10 @@ public class ClientPlugin extends AbstractUIPlugin implements ClientPluginConsta
registry = super.createImageRegistry();
- registry.put(ClientPluginConstants.DECORATION_PROJECT, PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_ELEMENT));
- registry.put(ClientPluginConstants.DECORATION_USER, PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_FILE));
+ registry.put(ClientPluginConstants.DECORATION_PROJECT, PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_FOLDER));
+ registry.put(ClientPluginConstants.DECORATION_USER, AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.ecf.example.collab", "icons/presence_member.gif").createImage());
registry.put(ClientPluginConstants.DECORATION_TIME, PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_TOOL_FORWARD));
- registry.put(ClientPluginConstants.DECORATION_TASK, PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_FOLDER));
+ registry.put(ClientPluginConstants.DECORATION_TASK, PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJ_ELEMENT));
registry.put(ClientPluginConstants.DECORATION_SEND , PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_TOOL_UNDO));
registry.put(ClientPluginConstants.DECORATION_RECEIVE , PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_TOOL_REDO));

Back to the top