From 92aa8c6b888b266d07acaa13fc725611e205ba72 Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Mon, 18 Apr 2005 14:12:12 +0000 Subject: [PATCH] INTEGRATION: CWS qwizardsbf4 (1.4.20); FILE MERGED 2005/04/11 16:28:25 tv 1.4.20.1: #correct handling of Office Language --- wizards/com/sun/star/wizards/common/Configuration.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wizards/com/sun/star/wizards/common/Configuration.java b/wizards/com/sun/star/wizards/common/Configuration.java index e1fd5e006b9d..bdc4eefb6e83 100644 --- a/wizards/com/sun/star/wizards/common/Configuration.java +++ b/wizards/com/sun/star/wizards/common/Configuration.java @@ -2,9 +2,9 @@ * * $RCSfile: Configuration.java,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: kz $ $Date: 2005-03-01 17:27:59 $ + * last change: $Author: obo $ $Date: 2005-04-18 15:12:12 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -217,8 +217,8 @@ public abstract class Configuration { public static String getOfficeLinguistic(XMultiServiceFactory xMSF) { try { - Object oMasterKey = getConfigurationRoot(xMSF, "org.openoffice.Office.Linguistic/General/", false); - String sLinguistic = (String) Helper.getUnoObjectbyName(oMasterKey, "DefaultLocale"); + Object oMasterKey = getConfigurationRoot(xMSF, "org.openoffice.Setup/L10N/", false); + String sLinguistic = (String) Helper.getUnoObjectbyName(oMasterKey, "ooLocale"); return sLinguistic; } catch (Exception exception) { exception.printStackTrace();