[DEVELOPMENT ENVIRONMENT]

* BUG: Correctly detect controls that do not need a real parent container when saving a form.
* BUG: Prevent a possible crash when the mouse leaves the output console while it displays debug links to code source.


git-svn-id: svn://localhost/gambas/trunk@7692 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2016-03-29 22:02:39 +00:00
parent 02128f960c
commit 8ea3863fc5
2 changed files with 2 additions and 2 deletions

View file

@ -1021,7 +1021,7 @@ Public Sub ConstructorNeedParent() As Boolean
hClass = Me
Do
hSym = hClass.Symbols["_new"]
If hSym And If hSym.Signature Then Return True
If hSym And If hSym.Signature And If Left(hSym.Signature) <> "[" Then Return True
If Not hClass.Parent Then Return False
hClass = Documentation.Classes[hClass.ParentComponent &/ hClass.Parent]
Loop

View file

@ -478,7 +478,7 @@ Public Sub edtOutput_Leave()
If $iLinkLen Then
$iLinkLen = 0
edtOutput[$iLinkY].Refresh
Try edtOutput[$iLinkY].Refresh
Endif
End