Zooflow: MASSIVE Clean up in Globix Module

This commit is contained in:
Jonathan Jenne
2021-12-13 16:07:41 +01:00
parent 957d7a3986
commit a7ec95cb19
37 changed files with 726 additions and 2989 deletions

View File

@@ -38,7 +38,7 @@ Public Class ClassWindowLayout
End If
_FileName = oPath
Dim settings As System.Collections.Generic.List(Of ClassSetting)
Dim settings As List(Of ClassSetting)
settings = Load()
If settings.Count = 0 Then
@@ -112,8 +112,7 @@ Public Class ClassWindowLayout
Dim _path As String
_path = Path.Combine(Application.UserAppDataPath(), form.Name & "-Layout.xml")
Dim layout As ClassLayout = New ClassLayout(_path)
Dim settings As System.Collections.Generic.List(Of ClassSetting) = New System.Collections.Generic.List(Of ClassSetting)
Dim settings As List(Of ClassSetting) = New List(Of ClassSetting)
Dim width As Integer
Dim height As Integer
Dim x As Integer
@@ -204,19 +203,4 @@ Public Class ClassWindowLayout
_value = value
End Sub
End Class
End Class
'-------------------------------------------------------------------
Public Class ClassLayout
Public Sub New(filename As String)
End Sub
End Class
End Class