Forgot to declare new Clipboard methods as static.

[GB.GUI.BASE]
* BUG: Forgot to declare new Clipboard methods as static.
This commit is contained in:
Benoît Minisini 2022-07-02 02:19:14 +02:00
parent dc428aa43a
commit 365da0aded

View file

@ -2,7 +2,7 @@
Export
Private Sub URLQuote(Path As String) As String
Static Private Sub URLQuote(Path As String) As String
Dim iInd As Integer
Dim sRes As String
@ -23,13 +23,13 @@ Private Sub URLQuote(Path As String) As String
End
Public Sub CopyPath(Path As String)
Static Public Sub CopyPath(Path As String)
Clipboard.CopyPaths([Path])
End
Public Sub CopyPaths(Paths As String[])
Static Public Sub CopyPaths(Paths As String[])
Dim I As Integer
Dim sData As String