Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Braithwood2015-03-11 03:07:45 +0000
committerWojciech Sudol2015-03-11 03:28:40 +0000
commit9b34c6a61c87327871109c5b9879fdf063534861 (patch)
treec5844865d489aa69f944b77681b51c68b5bc4182 /bundles/org.eclipse.e4.ui.css.swt.theme
parent3015384cc76f407542f2152f10b1eee335acc1ea (diff)
downloadeclipse.platform.ui-9b34c6a61c87327871109c5b9879fdf063534861.tar.gz
eclipse.platform.ui-9b34c6a61c87327871109c5b9879fdf063534861.tar.xz
eclipse.platform.ui-9b34c6a61c87327871109c5b9879fdf063534861.zip
Bug 461882 - Typo in ThemeEngine.getPlatformMatches(..)
Change-Id: I960013ab151ce3ca5ef8c4d621eb7147e3564c88 Signed-off-by: Ray Braithwood <ray@braithwood.com>
Diffstat (limited to 'bundles/org.eclipse.e4.ui.css.swt.theme')
-rw-r--r--bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java b/bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java
index ad4689d6916..c761ef868d4 100644
--- a/bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java
+++ b/bundles/org.eclipse.e4.ui.css.swt.theme/src/org/eclipse/e4/ui/css/swt/internal/theme/ThemeEngine.java
@@ -334,7 +334,7 @@ public class ThemeEngine implements IThemeEngine {
Bundle bundle = FrameworkUtil.getBundle(ThemeEngine.class);
String osname = bundle.getBundleContext().getProperty("osgi.os");
// TODO: Need to differentiate win32 versions
- String wsname = bundle.getBundleContext().getProperty("ogsi.ws");
+ String wsname = bundle.getBundleContext().getProperty("osgi.ws");
ArrayList<IConfigurationElement> matchingElements = new ArrayList<IConfigurationElement>();
for (IConfigurationElement element : elements) {
String elementOs = element.getAttribute("os");

Back to the top