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
                                        , &quot;AppendColumn&quot; _
                                        , &quot;AppendRow&quot; _
                                        , &quot;Contains&quot; _
+                                       , &quot;ConvertFromDataArray&quot; _
+                                       , &quot;ConvertToDataArray&quot; _
                                        , &quot;ConvertToDictionary&quot; _
+                                       , &quot;ConvertToRange&quot; _
+                                       , &quot;Copy&quot; _
                                        , &quot;CountDims&quot; _
                                        , &quot;Difference&quot; _
                                        , &quot;ExportToTextFile&quot; _
@@ -1708,6 +1712,7 @@ Public Function Methods() As Variant
                                        , &quot;RangeInit&quot; _
                                        , &quot;Reverse&quot; _
                                        , &quot;Shuffle&quot; _
+                                       , &quot;Slice&quot; _
                                        , &quot;Sort&quot; _
                                        , &quot;SortColumns&quot; _
                                        , &quot;SortRows&quot; _

Reply via email to