[Libreoffice-commits] core.git: Branch 'libreoffice-5-3' - wizards/source

Andreas Säger villeroy at t-online.de
Mon Mar 27 06:57:45 UTC 2017


 wizards/source/depot/Currency.xba        |    4 ++--
 wizards/source/depot/Internet.xba        |    4 ++--
 wizards/source/formwizard/DBMeta.xba     |    6 +++---
 wizards/source/formwizard/FormWizard.xba |    6 +++---
 wizards/source/formwizard/Language.xba   |   14 +++++++-------
 5 files changed, 17 insertions(+), 17 deletions(-)

New commits:
commit 7fb7b091e963d8c45abf1db1202a88f2e188e9b0
Author: Andreas Säger <villeroy at t-online.de>
Date:   Sun Mar 26 23:34:35 2017 +0300

    tdf#106529: fix closing parentheses of bundled macros
    
    Change-Id: I43b6d4f97cb3b1cd1426e6aa7e13550d94cb7c51
    Signed-off-by: Mike Kaganski <mike.kaganski at collabora.com>
    Reviewed-on: https://gerrit.libreoffice.org/35726
    Tested-by: Jenkins <ci at libreoffice.org>
    (cherry picked from commit ad4857211bcc39ccd4c84c670bfab1b937f65089)
    Reviewed-on: https://gerrit.libreoffice.org/35741

diff --git a/wizards/source/depot/Currency.xba b/wizards/source/depot/Currency.xba
index 5a428d757246..d728424d3214 100644
--- a/wizards/source/depot/Currency.xba
+++ b/wizards/source/depot/Currency.xba
@@ -89,7 +89,7 @@ Dim bIsDocCountry as Boolean
 	End If
 	sCurStockIDLabel = sMarket(Index,5)
 	sCurExtension = sMarket(Index,8)
-	iValueCol = Val(sMarket(Index,10)
+	iValueCol = Val(sMarket(Index,10))
 	If Instr(sCurExtension,";") <> 0 Then
 		' Take the german extension as the stock place is Frankfurt
 		sCurExtension = "407"
@@ -192,4 +192,4 @@ Function CheckFormatType(oStyle as Object)
 Dim oFormatofObject as Object
 	oFormatofObject = oDocFormats.getByKey(oStyle.NumberFormat)
   	CheckFormatType = INT(oFormatOfObject.Type) AND com.sun.star.util.NumberFormat.CURRENCY
-End Function</script:module>
\ No newline at end of file
+End Function</script:module>
diff --git a/wizards/source/depot/Internet.xba b/wizards/source/depot/Internet.xba
index b4bcf579b808..333bcf98af89 100644
--- a/wizards/source/depot/Internet.xba
+++ b/wizards/source/depot/Internet.xba
@@ -223,7 +223,7 @@ Dim iCellValue as Long
 		If iCellValue > 0 Then
 			oCell.SetValue(oLinkSheet.GetCellByPosition(0,i).Value)
 		Else
-			oCell.SetValue(StringToDate(oLinkSheet.GetCellByPosition(0,i).String)
+			oCell.SetValue(StringToDate(oLinkSheet.GetCellByPosition(0,i).String))
 		End If
 		oCell = oSheet.GetCellbyPosition(SBVALUECOLUMN,iCurRow)
 		oCell.SetValue(oLinkSheet.GetCellByPosition(4,i).Value)
@@ -353,4 +353,4 @@ Dim bLeaveLoop as Boolean
 		oDateCell.Annotation.SetString(NoteText)
 	End If
 End Sub
-</script:module>
\ No newline at end of file
+</script:module>
diff --git a/wizards/source/formwizard/DBMeta.xba b/wizards/source/formwizard/DBMeta.xba
index 68759966daf9..b0fa20b7a901 100644
--- a/wizards/source/formwizard/DBMeta.xba
+++ b/wizards/source/formwizard/DBMeta.xba
@@ -305,8 +305,8 @@ Dim MaxQueryIndex as Integer
 Dim MaxIndex as Integer
 Dim i as Integer
 Dim a as Integer
-	MaxTableIndex = Ubound(TableNames()
-	MaxQueryIndex = Ubound(QueryNames()
+	MaxTableIndex = Ubound(TableNames())
+	MaxQueryIndex = Ubound(QueryNames())
 	MaxIndex = MaxTableIndex + MaxQueryIndex + 1
 	If MaxIndex > -1 Then
 		Dim LocCommandTypes(MaxIndex) as Integer
@@ -344,4 +344,4 @@ Function AssignFieldLength(FieldLength as Long) as Integer
 		AssignFieldLength() = FieldLength
 	End If
 End Function
-</script:module>
\ No newline at end of file
+</script:module>
diff --git a/wizards/source/formwizard/FormWizard.xba b/wizards/source/formwizard/FormWizard.xba
index ffc2c4267e52..873ce4b22dea 100644
--- a/wizards/source/formwizard/FormWizard.xba
+++ b/wizards/source/formwizard/FormWizard.xba
@@ -153,11 +153,11 @@ Dim LocList() as String
 						DlgFormDB.GetControl("lstTables").SelectItem(sContent, True)
 					Else
 						If CommandType = com.sun.star.sdb.CommandType.QUERY Then
-							SelIndex = IndexInArray(sContent, QueryNames()
+							SelIndex = IndexInArray(sContent, QueryNames())
 							DlgFormDB.GetControl("lstTables").SelectItemPos(SelIndex, True)
 						ElseIf CommandType = com.sun.star.sdb.CommandType.TABLE Then
-							SelIndex = IndexInArray(sContent, TableNames()
-							DlgFormDB.GetControl("lstTables").SelectItemPos(Ubound(QueryNames()+1 + SelIndex, True)
+							SelIndex = IndexInArray(sContent, TableNames())
+							DlgFormDB.GetControl("lstTables").SelectItemPos(Ubound(QueryNames()+1 + SelIndex, True))
 						End If
 					End If
 					CurCommandType = CommandType
diff --git a/wizards/source/formwizard/Language.xba b/wizards/source/formwizard/Language.xba
index 40a0e5893ac0..a175a7d2a46b 100644
--- a/wizards/source/formwizard/Language.xba
+++ b/wizards/source/formwizard/Language.xba
@@ -64,7 +64,7 @@ Sub LoadLanguage ()
 	sMsgErrTitleSuggestedExist = GetResText(RID_COMMON + 10)
 	sMsgErrTitleAsTableExist = GetResText(RID_COMMON + 10)
 	sMsgErrTitleSyntaxError = GetResText(RID_COMMON + 11)
-	sMsgNoConnection = GetResText(RID_COMMON + 14
+	sMsgNoConnection = GetResText(RID_COMMON + 14)
 	sMsgProgressText = GetResText(RID_FORM + 2)
 	sMsgCreatedForm = GetResText(RID_FORM + 26)
 	sMsgErrNameToLong = GetResText (RID_FORM + 27)
@@ -129,12 +129,12 @@ Dim slblFields as String
 		.optAlign2.Label = GetResText(RID_FORM + 34)
 		.optAlign0.State = 1
 		
-                //FIXME: Remove this unused FNameAddOn through the file
+                REM//FIXME: Remove this unused FNameAddOn through the file
 		FNameAddOn = ""
 
 		IDArray = Array(36, 37, 40, 38, 39)
 		For i = 1 To 5
-			ButtonHelpText = GetResText(RID_FORM + IDArray(i-1)
+			ButtonHelpText = GetResText(RID_FORM + IDArray(i-1))
 			cmdButton = DlgFormDB.getControl("cmdArrange" & i)
 			cmdButton.Model.ImageURL = FormPath & "Arrange_" & i & FNameAddOn & ".gif"
 			cmdButton.Model.HelpText = ButtonHelpText
@@ -156,10 +156,10 @@ Dim slblFields as String
 '		.cmdArrange5.HelpText = GetResText(RID_FORM + 39)
 		sWriterFilterName = GetResText(RID_FORM + 70)
 	End With
-	DlgFormDB.GetControl("cmdMoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 39)
-	DlgFormDB.GetControl("cmdRemoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 40)
-	DlgFormDB.GetControl("cmdMoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 41)
-	DlgFormDB.GetControl("cmdRemoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 42)
+	DlgFormDB.GetControl("cmdMoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 39))
+	DlgFormDB.GetControl("cmdRemoveSelected").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 40))
+	DlgFormDB.GetControl("cmdMoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 41))
+	DlgFormDB.GetControl("cmdRemoveAll").getPeer().setProperty("AccessibleName", GetResText(RID_COMMON + 42))
 	DlgFormDB.getControl("lstFields").getPeer().setProperty("AccessibleName", DeleteStr(slblFields, "~"))
 	DlgFormDB.getControl("lstSelFields").getPeer().setProperty("AccessibleName", DeleteStr(slblSelFields, "~"))
 	


More information about the Libreoffice-commits mailing list