diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-07-04 11:39:09 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-07-04 14:24:29 +0200 |
commit | 5d439a07b60d505ac1a9fafad90849aa13f0c2aa (patch) | |
tree | db6e46828f777f8b1452bf507eb08c34a2867acb /wizards | |
parent | dd4ce9b2fc7feaf288055b24b5bc4842c0d2b4de (diff) |
Fix typos
Change-Id: I1049c2bec21caa751a37708023338a1449dc5539
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153953
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Jenkins
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/sfdialogs/SF_Dialog.xba | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/wizards/source/sfdialogs/SF_Dialog.xba b/wizards/source/sfdialogs/SF_Dialog.xba index f08a6ad7b45d..bbbeddd111d1 100644 --- a/wizards/source/sfdialogs/SF_Dialog.xba +++ b/wizards/source/sfdialogs/SF_Dialog.xba @@ -858,8 +858,8 @@ Public Function CreateCurrencyField(Optional ByVal ControlName As Variant _ ''' Specific args: ''' Border: "3D" (default) or "FLAT" or "NONE" ''' SpinButton:: when True (default = False), a spin button is present -''' MinValue: the smallest value that can be entered in the control. Dafault = -1000000 -''' MaxValue: the largest value that can be entered in the control. Dafault = +1000000 +''' MinValue: the smallest value that can be entered in the control. Default = -1000000 +''' MaxValue: the largest value that can be entered in the control. Default = +1000000 ''' Increment: the step when the spin button is pressed. Default = 1 ''' Accuracy: specifies the decimal accuracy. Default = 2 decimal digits ''' Returns: @@ -920,8 +920,8 @@ Public Function CreateDateField(Optional ByVal ControlName As Variant _ ''' Specific args: ''' Border: "3D" (default) or "FLAT" or "NONE" ''' Dropdown:: when True (default = False), a dropdown button is shown -''' MinDate: the smallest date that can be entered in the control. Dafault = 1900-01-01 -''' MaxDate: the largest Date that can be entered in the control. Dafault = 2200-12-31 +''' MinDate: the smallest date that can be entered in the control. Default = 1900-01-01 +''' MaxDate: the largest Date that can be entered in the control. Default = 2200-12-31 ''' Returns: ''' an instance of the SF_DialogControl class or Nothing ''' Example: @@ -1133,8 +1133,8 @@ Public Function CreateFormattedField(Optional ByVal ControlName As Variant _ ''' Specific args: ''' Border: "3D" (default) or "FLAT" or "NONE" ''' SpinButton:: when True (default = False), a spin button is present -''' MinValue: the smallest value that can be entered in the control. Dafault = -1000000 -''' MaxValue: the largest value that can be entered in the control. Dafault = +1000000 +''' MinValue: the smallest value that can be entered in the control. Default = -1000000 +''' MaxValue: the largest value that can be entered in the control. Default = +1000000 ''' Returns: ''' an instance of the SF_DialogControl class or Nothing ''' Example: @@ -1407,8 +1407,8 @@ Public Function CreateNumericField(Optional ByVal ControlName As Variant _ ''' Specific args: ''' Border: "3D" (default) or "FLAT" or "NONE" ''' SpinButton:: when True (default = False), a spin button is present -''' MinValue: the smallest value that can be entered in the control. Dafault = -1000000 -''' MaxValue: the largest value that can be entered in the control. Dafault = +1000000 +''' MinValue: the smallest value that can be entered in the control. Default = -1000000 +''' MaxValue: the largest value that can be entered in the control. Default = +1000000 ''' Increment: the step when the spin button is pressed. Default = 1 ''' Accuracy: specifies the decimal accuracy. Default = 2 decimal digits ''' Returns: @@ -1614,8 +1614,8 @@ Public Function CreateScrollBar(Optional ByVal ControlName As Variant _ ''' Specific args: ''' Orientation: H[orizontal] or V[ertical] ''' Border: "3D" (default) or "FLAT" or "NONE" -''' MinValue: the smallest value that can be entered in the control. Dafault = 0 -''' MaxValue: the largest value that can be entered in the control. Dafault = 100 +''' MinValue: the smallest value that can be entered in the control. Default = 0 +''' MaxValue: the largest value that can be entered in the control. Default = 100 ''' Returns: ''' an instance of the SF_DialogControl class or Nothing ''' Example: @@ -1794,8 +1794,8 @@ Public Function CreateTimeField(Optional ByVal ControlName As Variant _ ''' Create a new control of type TimeField in the actual dialog. ''' Specific args: ''' Border: "3D" (default) or "FLAT" or "NONE" -''' MinTime: the smallest time that can be entered in the control. Dafault = 0 -''' MaxTime: the largest time that can be entered in the control. Dafault = 24h +''' MinTime: the smallest time that can be entered in the control. Default = 0 +''' MaxTime: the largest time that can be entered in the control. Default = 24h ''' Returns: ''' an instance of the SF_DialogControl class or Nothing ''' Example: |