Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2010-10-19 05:48:20 +0000
committerEike Stepper2010-10-19 05:48:20 +0000
commit061f6a36a0d1a53f39f7b3f92d595c191ace3171 (patch)
tree4f3a09d5d13915d257d2a58cc1fa6133587a6a14
parent64a3f6288d941a77ec7c0201baacedcd7ddb9b47 (diff)
downloadcdo-061f6a36a0d1a53f39f7b3f92d595c191ace3171.tar.gz
cdo-061f6a36a0d1a53f39f7b3f92d595c191ace3171.tar.xz
cdo-061f6a36a0d1a53f39f7b3f92d595c191ace3171.zip
[327405] Provide an offline CDOWorkspace with Checkout/Update/Commit workflows
https://bugs.eclipse.org/bugs/show_bug.cgi?id=327405
-rw-r--r--plugins/org.eclipse.emf.cdo.ui.location/icons/add.gifbin0 -> 318 bytes
-rw-r--r--plugins/org.eclipse.emf.cdo.ui.location/icons/repos.gifbin0 -> 588 bytes
-rw-r--r--plugins/org.eclipse.emf.cdo.ui.location/icons/sample.gifbin983 -> 0 bytes
-rw-r--r--plugins/org.eclipse.emf.cdo.ui.location/plugin.xml2
-rw-r--r--plugins/org.eclipse.emf.cdo.ui.location/src/org/eclipse/emf/cdo/ui/internal/location/RepositoryLocationsView.java5
5 files changed, 2 insertions, 5 deletions
diff --git a/plugins/org.eclipse.emf.cdo.ui.location/icons/add.gif b/plugins/org.eclipse.emf.cdo.ui.location/icons/add.gif
new file mode 100644
index 0000000000..252d7ebcb8
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.ui.location/icons/add.gif
Binary files differ
diff --git a/plugins/org.eclipse.emf.cdo.ui.location/icons/repos.gif b/plugins/org.eclipse.emf.cdo.ui.location/icons/repos.gif
new file mode 100644
index 0000000000..33a0a80ffa
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo.ui.location/icons/repos.gif
Binary files differ
diff --git a/plugins/org.eclipse.emf.cdo.ui.location/icons/sample.gif b/plugins/org.eclipse.emf.cdo.ui.location/icons/sample.gif
deleted file mode 100644
index 34fb3c9d8c..0000000000
--- a/plugins/org.eclipse.emf.cdo.ui.location/icons/sample.gif
+++ /dev/null
Binary files differ
diff --git a/plugins/org.eclipse.emf.cdo.ui.location/plugin.xml b/plugins/org.eclipse.emf.cdo.ui.location/plugin.xml
index 67e8149ba8..c9c79c0f14 100644
--- a/plugins/org.eclipse.emf.cdo.ui.location/plugin.xml
+++ b/plugins/org.eclipse.emf.cdo.ui.location/plugin.xml
@@ -19,7 +19,7 @@
allowMultiple="false"
category="org.eclipse.emf.cdo"
class="org.eclipse.emf.cdo.ui.internal.location.RepositoryLocationsView"
- icon="icons/sample.gif"
+ icon="icons/repos.gif"
id="org.eclipse.emf.cdo.ui.location.RepositoryLocationsView"
name="CDO Repositories">
</view>
diff --git a/plugins/org.eclipse.emf.cdo.ui.location/src/org/eclipse/emf/cdo/ui/internal/location/RepositoryLocationsView.java b/plugins/org.eclipse.emf.cdo.ui.location/src/org/eclipse/emf/cdo/ui/internal/location/RepositoryLocationsView.java
index c6b49132ee..b8cbddae45 100644
--- a/plugins/org.eclipse.emf.cdo.ui.location/src/org/eclipse/emf/cdo/ui/internal/location/RepositoryLocationsView.java
+++ b/plugins/org.eclipse.emf.cdo.ui.location/src/org/eclipse/emf/cdo/ui/internal/location/RepositoryLocationsView.java
@@ -21,8 +21,6 @@ import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
-import org.eclipse.ui.ISharedImages;
-import org.eclipse.ui.PlatformUI;
/**
* @author Eike Stepper
@@ -70,8 +68,7 @@ public class RepositoryLocationsView extends ContainerView
{
setText("New Location");
setToolTipText("Add a new repository location");
- setImageDescriptor(PlatformUI.getWorkbench().getSharedImages()
- .getImageDescriptor(ISharedImages.IMG_OBJS_INFO_TSK));
+ setImageDescriptor(OM.getImageDescriptor("icons/add.gif"));
}
@Override

Back to the top