Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2014-05-27 14:17:16 +0000
committerCurtis Windatt2014-05-27 14:17:16 +0000
commit6a7a76406eab204a3f55dd2d98e1fa26e15faa81 (patch)
tree3a6158de5378cf50c49dbc6fd6e917153f7b765d
parentd015baf1e3fd85328e2b29c2695503859b9816cc (diff)
downloadeclipse.pde.ui-6a7a76406eab204a3f55dd2d98e1fa26e15faa81.tar.gz
eclipse.pde.ui-6a7a76406eab204a3f55dd2d98e1fa26e15faa81.tar.xz
eclipse.pde.ui-6a7a76406eab204a3f55dd2d98e1fa26e15faa81.zip
Bug 435810 - PDE Manifest editor: Missing 2.0 compatibility should beI20140528-0930I20140528-0830I20140528-0800I20140528-0115I20140527-2300I20140527-2000
shown as error Change-Id: I84b3e4ce0b05a5f079e81ed1d965615f8a5719f9 Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
-rw-r--r--ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/OverviewPage.java1
-rw-r--r--ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/pderesources.properties4
2 files changed, 3 insertions, 2 deletions
diff --git a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/OverviewPage.java b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/OverviewPage.java
index a5b0ea1582..d16aeb86cf 100644
--- a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/OverviewPage.java
+++ b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/editor/plugin/OverviewPage.java
@@ -156,6 +156,7 @@ public class OverviewPage extends LaunchShortcutOverviewPage {
}
FormText warningText = createClient(container, content, toolkit);
warningText.setImage("warning", lp.get(PDEPluginImages.DESC_WARNING_ST_OBJ, 0)); //$NON-NLS-1$
+ warningText.setImage("error", lp.get(PDEPluginImages.DESC_ERROR_ST_OBJ, 0)); //$NON-NLS-1$
}
FormText text = createClient(container, isFragment() ? PDEUIMessages.OverviewPage_fContent : PDEUIMessages.OverviewPage_content, toolkit);
diff --git a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/pderesources.properties b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/pderesources.properties
index bdbd12f405..afaa85d0e1 100644
--- a/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/pderesources.properties
+++ b/ui/org.eclipse.pde.ui/src/org/eclipse/pde/internal/ui/pderesources.properties
@@ -1704,10 +1704,10 @@ OverviewPage_fOsgi = <form>\
<li style="image" value="warning">You must <a href="action.convert">create an OSGi bundle manifest</a> to run this fragment without the compatibility software 'Eclipse 2.0 Style Plugin Support'.</li>\
</form>
OverviewPage_NoPluginConverterFragment = <form>\
-<li style="image" value="warning">You must either manually create an OSGi bundle manifest or <a href="action.installPluginConverter">install the 'Eclipse 2.0 Style Plugin Support'</a> from 'The Eclipse Project Updates' software site to run this fragment.</li>\
+<li style="image" value="error">You must either manually create an OSGi bundle manifest or <a href="action.installPluginConverter">install the 'Eclipse 2.0 Style Plugin Support'</a> from 'The Eclipse Project Updates' software site to compile or run this fragment.</li>\
</form>
OverviewPage_NoPluginConverterPlugin = <form>\
-<li style="image" value="warning">You must either manually create an OSGi bundle manifest or <a href="action.installPluginConverter">install the 'Eclipse 2.0 Style Plugin Support'</a> from 'The Eclipse Project Updates' software site to run this plug-in.</li>\
+<li style="image" value="error">You must either manually create an OSGi bundle manifest or <a href="action.installPluginConverter">install the 'Eclipse 2.0 Style Plugin Support'</a> from 'The Eclipse Project Updates' software site to compile or run this plug-in.</li>\
</form>
OverviewPage_error=Error
OverviewPage_fContent=<form>\

Back to the top