Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2012-05-11 19:31:46 +0000
committerJohn Arthorne2012-05-11 19:31:46 +0000
commitbd4be9c85e4e312c306c8986de4ea89eaff8e611 (patch)
tree3bd34acac92d938da23b1051d99314b6cea061ad
parenta2f9d54d4ec55e27d28b6c522a2940b309729f11 (diff)
downloadrt.equinox.p2-bd4be9c85e4e312c306c8986de4ea89eaff8e611.tar.gz
rt.equinox.p2-bd4be9c85e4e312c306c8986de4ea89eaff8e611.tar.xz
rt.equinox.p2-bd4be9c85e4e312c306c8986de4ea89eaff8e611.zip
-rw-r--r--bundles/org.eclipse.equinox.p2.publisher.eclipse/src/org/eclipse/equinox/internal/p2/publisher/eclipse/ProductFile.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.publisher.eclipse/src/org/eclipse/equinox/internal/p2/publisher/eclipse/ProductFile.java b/bundles/org.eclipse.equinox.p2.publisher.eclipse/src/org/eclipse/equinox/internal/p2/publisher/eclipse/ProductFile.java
index ce0b65400..324c94fc5 100644
--- a/bundles/org.eclipse.equinox.p2.publisher.eclipse/src/org/eclipse/equinox/internal/p2/publisher/eclipse/ProductFile.java
+++ b/bundles/org.eclipse.equinox.p2.publisher.eclipse/src/org/eclipse/equinox/internal/p2/publisher/eclipse/ProductFile.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -79,6 +79,7 @@ public class ProductFile extends DefaultHandler implements IProductDescriptor {
private static final String WIN32_32_HIGH = "winMediumHigh"; //$NON-NLS-1$
private static final String WIN32_48_LOW = "winLargeLow"; //$NON-NLS-1$
private static final String WIN32_48_HIGH = "winLargeHigh"; //$NON-NLS-1$
+ private static final String WIN32_256_HIGH = "winExtraLargeHigh"; //$NON-NLS-1$
private static final String OS_WIN32 = "win32";//$NON-NLS-1$
private static final String OS_LINUX = "linux";//$NON-NLS-1$
@@ -863,6 +864,7 @@ public class ProductFile extends DefaultHandler implements IProductDescriptor {
addIcon(OS_WIN32, attributes.getValue(WIN32_32_LOW));
addIcon(OS_WIN32, attributes.getValue(WIN32_48_HIGH));
addIcon(OS_WIN32, attributes.getValue(WIN32_48_LOW));
+ addIcon(OS_WIN32, attributes.getValue(WIN32_256_HIGH));
}
private void processLinux(Attributes attributes) {

Back to the top