[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:
Benoît Minisini 2014-02-02 14:38:51 +00:00
parent ba56007672
commit 1d2147f99c

View file

@ -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]