Skip to content
Snippets Groups Projects
Commit cbf9ec1c authored by gambas's avatar gambas
Browse files

Property variables declared with 'USE' are now correctly considered as private...

Property variables declared with 'USE' are now correctly considered as private by the automatic completion.

[DEVELOPMENT ENVIRONMENT]
* BUG: Property variables declared with 'USE' are now correctly considered as private by the automatic completion.
parent a165a488
No related branches found
No related tags found
No related merge requests found
Pipeline #235223687 passed
......@@ -850,6 +850,7 @@ Private Sub ScanClass(hModule As Object, cSymbol As Collection, bModule As Boole
hSymbol2 = hSymbol.Copy()
hSymbol2.Name = sName
hSymbol2.LineNumber = hSymbol.LineNumber
hSymbol2.NotPublic = True
cSymbol[sName] = hSymbol2
Endif
Endif
......
......@@ -147,8 +147,6 @@ Public Function GetIcon() As String
Dim bStatic As Boolean
Dim sIcon As String
If Name = "_new" Then Stop
bStatic = UCase(Kind) = Kind
Select Case LCase(Kind)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment