[DEVELOPMENT ENVIRONMENT]
* BUG: Don't freeze when loading an older version of a component project that misses some classes implemented in the newer versions of the component. git-svn-id: svn://localhost/gambas/trunk@6127 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
ba56007672
commit
1d2147f99c
1 changed files with 5 additions and 3 deletions
|
@ -547,9 +547,11 @@ Public Sub Load()
|
|||
|
||||
'If sClass = "Application" Then Stop
|
||||
|
||||
If Key = Project.Name And If Project.ExistClass(sClass) Then
|
||||
bNextClass = True
|
||||
Continue
|
||||
If Key = Project.Name Then
|
||||
If Project.ExistClass(sClass) Or If cClass[sClass] Then
|
||||
bNextClass = True
|
||||
Continue
|
||||
Endif
|
||||
Endif
|
||||
|
||||
sParent = aLine[iLine]
|
||||
|
|
Loading…
Reference in a new issue