diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-07-15 20:27:02 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-07-15 21:20:17 +0200 |
commit | 83a169d04aca94f6f2a5b6ef9fdfba3c0fc4ede3 (patch) | |
tree | 8efd10f238cd52aaa2a834226dcec9c1d2c2b9c4 | |
parent | 1c22e2e6561a23a6a19b54c3c986d3ef040575f0 (diff) |
Fix typo
Change-Id: I04d3440d121e6305b3435964b88d221bf4bce221
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154486
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | wizards/source/scriptforge/SF_FileSystem.xba | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/wizards/source/scriptforge/SF_FileSystem.xba b/wizards/source/scriptforge/SF_FileSystem.xba index 3bb177708f3f..bb611d69b59a 100644 --- a/wizards/source/scriptforge/SF_FileSystem.xba +++ b/wizards/source/scriptforge/SF_FileSystem.xba @@ -307,7 +307,7 @@ Public Function CompareFiles(Optional ByVal FileName1 As Variant _ ''' Compare 2 files and return True if they seem identical ''' The comparison may be based on the file attributes, like modification time, ''' or on their contents. -''' The method is not supporte for document's internal file systems. +''' The method is not supported for document's internal file systems. ''' Args: ''' FileName1: The 1st file to compare ''' FileName2: The 2nd file to compare @@ -1025,7 +1025,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: @@ -1253,7 +1253,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 @@ -1602,7 +1602,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 @@ -1699,7 +1699,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 = "" |