wizards/source/scriptforge/SF_FileSystem.xba | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit 1d0adde905fa5353fdb38f743dce9d50e8a53ef7 Author: Andrea Gelmini <[email protected]> AuthorDate: Sat Jul 22 23:28:07 2023 +0200 Commit: Julien Nabet <[email protected]> CommitDate: Sun Jul 23 10:05:10 2023 +0200 Fix typo Change-Id: Ia6252da165d734b752ea6cad96f8014556bb4bfd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154796 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/wizards/source/scriptforge/SF_FileSystem.xba b/wizards/source/scriptforge/SF_FileSystem.xba index 2364ec4206b1..5ece60af8be7 100644 --- a/wizards/source/scriptforge/SF_FileSystem.xba +++ b/wizards/source/scriptforge/SF_FileSystem.xba @@ -1012,7 +1012,7 @@ End Function ' ScriptForge.SF_FileSystem.GetFileLen REM ----------------------------------------------------------------------------- Public Function GetFileModified(Optional ByVal FileName As Variant) As Variant ''' Returns the last modified date for the given file -''' The method is not supporte for document's internal file systems. +''' The method is not supported for document's internal file systems. ''' Args: ''' FileName: a string representing an existing file ''' Returns: @@ -1240,7 +1240,7 @@ Public Function HashFile(Optional ByVal FileName As Variant _ ) As String ''' Return an hexadecimal string representing a checksum of the given file ''' Next algorithms are supported: MD5, SHA1, SHA224, SHA256, SHA384 and SHA512 -''' The method is not supporte for document's internal file systems. +''' The method is not supported for document's internal file systems. ''' Args: ''' FileName: a string representing a file ''' Algorithm: The hashing algorithm to use @@ -1589,7 +1589,7 @@ Public Function PickFile(Optional ByVal DefaultFile As Variant _ ''' The mode, OPEN or SAVE, and the filter may be preset ''' If mode = SAVE and the picked file exists, a warning message will be displayed ''' Modified from Andrew Pitonyak's Base Macro Programming ยง10.4 -''' The method is not supporte for document's internal file systems. +''' The method is not supported for document's internal file systems. ''' Args: ''' DefaultFile: Folder part: the FolderName from which to start. Default = the last selected folder ''' File part: the default file to open or save @@ -1686,7 +1686,7 @@ Public Function PickFolder(Optional ByVal DefaultFolder As Variant _ , Optional ByVal FreeText As Variant _ ) As String ''' Display a FolderPicker dialog box -''' The method is not supporte for document's internal file systems. +''' The method is not supported for document's internal file systems. ''' Args: ''' DefaultFolder: the FolderName from which to start. Default = the last selected folder ''' FreeText: text to display in the dialog. Default = ""
