Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2014-03-19 16:27:34 +0000
committerLars Vogel2014-03-19 16:27:34 +0000
commitc45d738bd16d79d33b65390347d592683564c730 (patch)
tree7ceed9af0796cf2048c4f9cac1cd290e92197522
parent6f3793a263d20ec71f198669d1223b9132c90711 (diff)
downloadeclipse.platform.ui-c45d738bd16d79d33b65390347d592683564c730.tar.gz
eclipse.platform.ui-c45d738bd16d79d33b65390347d592683564c730.tar.xz
eclipse.platform.ui-c45d738bd16d79d33b65390347d592683564c730.zip
Bug 428181 - Misleading error message if fixed CSS styling done wrong
Change-Id: I97aeea9b38d5455b74086bacede297c044a25be4 Signed-off-by: Lars Vogel <Lars.Vogel@gmail.com>
-rw-r--r--bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
index c583204b7cf..43dc2ddc891 100644
--- a/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
+++ b/bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/internal/workbench/swt/E4Application.java
@@ -304,8 +304,9 @@ public class E4Application implements IApplication {
// validate static CSS URI
if (cssURI != null && !cssURI.startsWith("platform:/plugin/")) {
System.err
- .println("Warning. Use the \"platform:/plugin/Bundle-SymbolicName/path/filename.extension\" URI for the parameter: "
- + IWorkbench.CSS_URI_ARG); //$NON-NLS-1$
+ .println("Warning. "
+ + "Use the \"platform:/plugin/Bundle-SymbolicName/path/filename.extension\" "
+ + "URI for the \"" + IWorkbench.CSS_URI_ARG + "\" parameter."); //$NON-NLS-1$
appContext.set(E4Application.THEME_ID, cssURI);
}

Back to the top