summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorBehrend Cornelius <bc@openoffice.org>2001-05-30 16:08:07 +0000
committerBehrend Cornelius <bc@openoffice.org>2001-05-30 16:08:07 +0000
commitfc2bb64da3165c1395e0049bb6b208cd5534edd8 (patch)
tree9593dcea93e1c6a9d6c41f43fd3746a7713e23a2 /wizards
parentaf8ab2a349f27b948452b880f54daf1649d498f1 (diff)
#87647# One Boolean variabel in 'FillstepInputpaths' added
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/importwizard/API.xba2
-rw-r--r--wizards/source/importwizard/DialogModul.xba8
-rw-r--r--wizards/source/importwizard/FilesModul.xba2
-rw-r--r--wizards/source/importwizard/ImportDialog.xdl2
-rw-r--r--wizards/source/importwizard/Language.xba2
-rw-r--r--wizards/source/importwizard/Main.xba2
6 files changed, 10 insertions, 8 deletions
diff --git a/wizards/source/importwizard/API.xba b/wizards/source/importwizard/API.xba
index 1a636854a5a2..23b84dfeccc6 100644
--- a/wizards/source/importwizard/API.xba
+++ b/wizards/source/importwizard/API.xba
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-
+<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="API" script:language="StarBasic">Declare Function RegOpenKeyEx Lib &quot;advapi32.dll&quot; Alias &quot;RegOpenKeyExA&quot; _
(ByVal hKey As Long, _
ByVal lpSubKey As String, _
diff --git a/wizards/source/importwizard/DialogModul.xba b/wizards/source/importwizard/DialogModul.xba
index 04a6cfca9aa6..429982ebff97 100644
--- a/wizards/source/importwizard/DialogModul.xba
+++ b/wizards/source/importwizard/DialogModul.xba
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-
+<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="DialogModul" script:language="StarBasic">Option Explicit
Public Const bDebugWizard=True
@@ -97,7 +97,7 @@ End Sub
Sub FillStep_InputPaths(OfficeIndex as Integer, bStartup as Boolean)
Dim Index as Integer
- If bStartup Then
+ If bStartup And Not bDoKeepApplValues Then
If ImportDialog.OptMSDocuments.State = 1 Then
SetupMSConfiguration()
Else
@@ -167,7 +167,9 @@ Dim BoolValue as Boolean
Applications(a,SBTEMPLSOURCE) = GetTemplateDefaultPath(i)
Applications(a,SBTEMPLTARGET) = GetTargetTemplatePath(i)
Applications(a,SBAPPLKEY) = i
- If ChkApplication(i).State = 1 Then a = a + 1
+ If ChkApplication(i).State = 1 Then
+ a = a + 1
+ End If
Next i
ApplCount = a
End If
diff --git a/wizards/source/importwizard/FilesModul.xba b/wizards/source/importwizard/FilesModul.xba
index 93af82c5ffce..483c89947ed6 100644
--- a/wizards/source/importwizard/FilesModul.xba
+++ b/wizards/source/importwizard/FilesModul.xba
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-
+<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="FilesModul" script:language="StarBasic">Option Explicit
Public AbsTemplateFound as Integer
diff --git a/wizards/source/importwizard/ImportDialog.xdl b/wizards/source/importwizard/ImportDialog.xdl
index b5f016b5d3d3..5d71a4ef0f87 100644
--- a/wizards/source/importwizard/ImportDialog.xdl
+++ b/wizards/source/importwizard/ImportDialog.xdl
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-
+<!DOCTYPE dlg:window PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "dialog.dtd">
<dlg:window xmlns:dlg="http://openoffice.org/2000/dialog" dlg:id="ImportDialog" dlg:style-id="0" dlg:title="ImportDialog" dlg:left="96" dlg:top="28" dlg:width="270" dlg:height="210" dlg:page="1">
<dlg:styles>
<dlg:style dlg:style-id="0"/>
diff --git a/wizards/source/importwizard/Language.xba b/wizards/source/importwizard/Language.xba
index 10d0b0c1df1f..5343785ea4c5 100644
--- a/wizards/source/importwizard/Language.xba
+++ b/wizards/source/importwizard/Language.xba
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-
+<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Language" script:language="StarBasic">Option Explicit
Public sMSTemplateCheckbox(2) As String
diff --git a/wizards/source/importwizard/Main.xba b/wizards/source/importwizard/Main.xba
index 395f7c83570c..6d2c93b29aec 100644
--- a/wizards/source/importwizard/Main.xba
+++ b/wizards/source/importwizard/Main.xba
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-
+<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Main" script:language="StarBasic">Option Explicit
&apos; ***** BASIC *****