summaryrefslogtreecommitdiff
path: root/javainstaller2
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2008-02-05 12:37:50 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2008-02-05 12:37:50 +0000
commite000c184a4932edc05d25f5789a6ca4ed4042556 (patch)
tree46de3901cfaa6b2d1bd5e8a81fa369cf146cfa04 /javainstaller2
parent6aa922721858dd3f7b05319c85180861555947e7 (diff)
INTEGRATION: CWS native127 (1.4.4); FILE MERGED
2008/01/25 09:56:19 is 1.4.4.1: #i85474# one and only language not selectable
Diffstat (limited to 'javainstaller2')
-rwxr-xr-xjavainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java13
1 files changed, 11 insertions, 2 deletions
diff --git a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java
index 45319aecacc8..01f389f0b56c 100755
--- a/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java
+++ b/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/ProductDescription.java
@@ -4,9 +4,9 @@
*
* $RCSfile: ProductDescription.java,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: obo $ $Date: 2008-01-07 12:33:13 $
+ * last change: $Author: ihi $ $Date: 2008-02-05 13:37:50 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -215,6 +215,15 @@ public class ProductDescription {
}
}
+ section = data.getElement("multilingual");
+ if (section != null) {
+ String value = section.getValue();
+ if ((value != null) && (! value.equals(""))) {
+ boolean multilingualValue = Parser.parseBoolean(value);
+ installData.setIsMultiLingual(multilingualValue);
+ }
+ }
+
/* check for the update behaviour of this installation set */
section = data.getElement("dontupdate");
if (section != null) {