From ab17f13c6d60d2d6ad7ff6ce3734ba81c77f881d Mon Sep 17 00:00:00 2001 From: Olivier Hallot Date: Tue, 16 May 2017 14:35:31 -0300 Subject: Mute L10n in some lines Change-Id: I2503568589b869b717f5c997434340d00892a275 Reviewed-on: https://gerrit.libreoffice.org/37687 Reviewed-by: Olivier Hallot Tested-by: Olivier Hallot --- source/text/sbasic/shared/03103800.xhp | 18 +++++++++--------- source/text/sbasic/shared/03103900.xhp | 20 ++++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/source/text/sbasic/shared/03103800.xhp b/source/text/sbasic/shared/03103800.xhp index eb34752254..75400f3e92 100644 --- a/source/text/sbasic/shared/03103800.xhp +++ b/source/text/sbasic/shared/03103800.xhp @@ -38,24 +38,24 @@ For example, the following command: -MyObj.Prop1.Command = 5 +MyObj.Prop1.Command = 5 corresponds to the command block: -Dim ObjVar as Object -Dim ObjProp as Object -ObjName As String = "MyObj" -ObjVar = FindObject( ObjName As String ) -PropName As String = "Prop1" -ObjProp = FindPropertyObject( ObjVar, PropName As String ) -ObjProp.Command = 5 +Dim ObjVar as Object +Dim ObjProp as Object +ObjName As String = "MyObj" +ObjVar = FindObject( ObjName As String ) +PropName As String = "Prop1" +ObjProp = FindPropertyObject( ObjVar, PropName As String ) +ObjProp.Command = 5 This allows names to be dynamically created at run-time. For example: "TextEdit1" to TextEdit5" in a loop to create five control names. See also: FindPropertyObject Syntax: -FindObject( ObjName As String ) +FindObject( ObjName As String ) Parameters: diff --git a/source/text/sbasic/shared/03103900.xhp b/source/text/sbasic/shared/03103900.xhp index 127da9c654..5ec50e594a 100644 --- a/source/text/sbasic/shared/03103900.xhp +++ b/source/text/sbasic/shared/03103900.xhp @@ -38,24 +38,24 @@ For instance, the command: - MyObj.Prop1.Command = 5 + MyObj.Prop1.Command = 5 -corresponds to the following command block: +corresponds to the following command block: -Dim ObjVar as Object -Dim ObjProp as Object -ObjName As String = "MyObj" -ObjVar = FindObject( ObjName As String ) -PropName As String = "Prop1" -ObjProp = FindPropertyObject( ObjVar, PropName As String ) -ObjProp.Command = 5 +Dim ObjVar as Object +Dim ObjProp as Object +ObjName As String = "MyObj" +ObjVar = FindObject( ObjName As String ) +PropName As String = "Prop1" +ObjProp = FindPropertyObject( ObjVar, PropName As String ) +ObjProp.Command = 5 To dynamically create Names at run-time, use: "TextEdit1" to TextEdit5" in a loop to create five names. See also: FindObject Syntax: -FindPropertyObject( ObjVar, PropName As String ) +FindPropertyObject( ObjVar, PropName As String ) Parameters: -- cgit