summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorBehrend Cornelius <bc@openoffice.org>2001-12-17 10:20:20 +0000
committerBehrend Cornelius <bc@openoffice.org>2001-12-17 10:20:20 +0000
commit044d168e2352749b58b82ad61a232b1978448ca4 (patch)
treefbf65dfbed449563224e4d9ad2279b34ab894d75 /wizards
parent9e4f8d0c473ac0b4dcacbf584c3f75c240031639 (diff)
#96003# Debugmode set to 'False'
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/formwizard/FormWizard.xba8
1 files changed, 4 insertions, 4 deletions
diff --git a/wizards/source/formwizard/FormWizard.xba b/wizards/source/formwizard/FormWizard.xba
index c1c8a91a14cd..9e728f2efdb7 100644
--- a/wizards/source/formwizard/FormWizard.xba
+++ b/wizards/source/formwizard/FormWizard.xba
@@ -64,7 +64,7 @@ Dim i as Integer
Dim SelCount as Integer
BasicLibraries.LoadLibrary(&quot;Tools&quot;)
BasicLibraries.LoadLibrary(&quot;WebWizard&quot;)
- bDebug = True
+ bDebug = False
If Not bDebug Then
On Local Error GoTo WIZARDERROR
End If
@@ -126,7 +126,7 @@ Dim SelCount as Integer
DlgFormDB.GetControl(&quot;lstTables&quot;).SelectItemPos(SelIndex, True)
ElseIf CommandType = com.sun.star.sdb.CommandType.TABLE Then
SelIndex = IndexInArray(sContent, TableNames()
- DlgFormDB.GetControl(&quot;lstTables&quot;).SelectItemPos(Ubound(QueryNames()+1 + SelIndex, True)
+ DlgFormDB.GetControl(&quot;lstTables&quot;).SelectItemPos(Ubound(QueryNames()+1 + SelIndex, True)
End If
End If
CurCommandType = CommandType
@@ -166,10 +166,10 @@ Dim SelCount as Integer
oDocument.Dispose()
End If
WIZARDERROR:
- If Err &lt;&gt; 0 Then
+ If Err &lt;&gt; 0 Then
Msgbox(sMsgErrMsg, 16, GetProductName())
Resume LOCERROR
- LOCERROR:
+ LOCERROR:
End If
End Sub