Kaydet (Commit) a536648c authored tarafından Oliver Bolte's avatar Oliver Bolte

INTEGRATION: CWS qwizardsbf4 (1.6.6); FILE MERGED

2005/04/11 15:18:01 tv 1.6.6.1: #i43136# correct default name for agenda template
üst 92aa8c6b
...@@ -129,9 +129,31 @@ public class LetterWizardDialogImpl extends LetterWizardDialog { ...@@ -129,9 +129,31 @@ public class LetterWizardDialogImpl extends LetterWizardDialog {
initConfiguration(); initConfiguration();
//set the language according to the Linguistic //set the language according to the Linguistic
getCurrentLetter().cp_Norm = getOfficeLinguistic(); int oL = getOfficeLinguistic();
myConfig.cp_BusinessLetter.cp_Norm = oL;
myConfig.cp_PrivateOfficialLetter.cp_Norm = oL;
myConfig.cp_PrivateLetter.cp_Norm = oL;
initializeTemplates(xMSF); initializeTemplates(xMSF);
if (myConfig.cp_BusinessLetter.cp_Greeting.equals("")){
myConfig.cp_BusinessLetter.cp_Greeting = resources.GreetingLabels[0];
}
if (myConfig.cp_BusinessLetter.cp_Salutation.equals("")){
myConfig.cp_BusinessLetter.cp_Salutation = resources.SalutationLabels[0];
}
if (myConfig.cp_PrivateOfficialLetter.cp_Greeting.equals("")){
myConfig.cp_PrivateOfficialLetter.cp_Greeting = resources.GreetingLabels[1];
}
if (myConfig.cp_PrivateOfficialLetter.cp_Salutation.equals("")){
myConfig.cp_PrivateOfficialLetter.cp_Salutation = resources.SalutationLabels[1];
}
if (myConfig.cp_PrivateLetter.cp_Greeting.equals("")){
myConfig.cp_PrivateLetter.cp_Greeting = resources.GreetingLabels[2];
}
if (myConfig.cp_PrivateLetter.cp_Salutation.equals("")){
myConfig.cp_PrivateLetter.cp_Salutation = resources.SalutationLabels[2];
}
//update the dialog UI according to the loaded Configuration //update the dialog UI according to the loaded Configuration
updateUI(); updateUI();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment