wizards/source/scriptforge/SF_Array.xba | 5 +++++ 1 file changed, 5 insertions(+)
New commits: commit 7fdaeef4c5dcee68dd104851662eea9cf9aea59e Author: Jean-Pierre Ledure <j...@ledure.be> AuthorDate: Sat Jan 11 16:08:58 2025 +0100 Commit: Jean-Pierre Ledure <j...@ledure.be> CommitDate: Sat Jan 11 19:24:12 2025 +0100 ScriptForge (SF_Array) fix the list of methods The Methods() method returns the list of methods present in each class. It is unused so far (vs. Properties() is used in the code) => a wrong list has no consequences. It is however reserved for future use. The list was incomplete in Array class. Change-Id: I3e0522d6669d2732c68e52e4021ffb5c8a3fb108 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/180127 Tested-by: Jenkins Reviewed-by: Jean-Pierre Ledure <j...@ledure.be> diff --git a/wizards/source/scriptforge/SF_Array.xba b/wizards/source/scriptforge/SF_Array.xba index 05c96c96d494..d28bc7d4541c 100644 --- a/wizards/source/scriptforge/SF_Array.xba +++ b/wizards/source/scriptforge/SF_Array.xba @@ -1689,7 +1689,11 @@ Public Function Methods() As Variant , "AppendColumn" _ , "AppendRow" _ , "Contains" _ + , "ConvertFromDataArray" _ + , "ConvertToDataArray" _ , "ConvertToDictionary" _ + , "ConvertToRange" _ + , "Copy" _ , "CountDims" _ , "Difference" _ , "ExportToTextFile" _ @@ -1708,6 +1712,7 @@ Public Function Methods() As Variant , "RangeInit" _ , "Reverse" _ , "Shuffle" _ + , "Slice" _ , "Sort" _ , "SortColumns" _ , "SortRows" _