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:
parent
dc428aa43a
commit
365da0aded
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue