Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2002-02-08 11:11:08 +0000
committerDani Megert2002-02-08 11:11:08 +0000
commit829f8833844a628352f75e1eb65cc1fc7b74019f (patch)
treef77e6c5b5897ae8a6a4f8aedda1911efcdc2c9a1 /bundles/org.eclipse.compare/compare/org/eclipse/compare
parente542ce6de6a47a5cb81b642470c59c07866342f5 (diff)
downloadeclipse.platform.team-829f8833844a628352f75e1eb65cc1fc7b74019f.tar.gz
eclipse.platform.team-829f8833844a628352f75e1eb65cc1fc7b74019f.tar.xz
eclipse.platform.team-829f8833844a628352f75e1eb65cc1fc7b74019f.zip
Fixed bug 8801: remove the basic icons from our plugins
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/Utilities.java7
1 files changed, 1 insertions, 6 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/Utilities.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/Utilities.java
index d750b2097..01f63aab0 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/Utilities.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/Utilities.java
@@ -204,12 +204,7 @@ public class Utilities {
}
public static String getIconPath(Display display) {
- if (display == null)
- display= Display.getCurrent();
- String path= "icons/basic/"; //$NON-NLS-1$
- if (display != null && display.getIconDepth() > 4)
- path= "icons/full/"; //$NON-NLS-1$
- return path;
+ return "icons/full/";
}
/**

Back to the top