[DEVELOPMENT ENVIRONMENT]

* NEW: Use the new Process.Ignore syntax.


git-svn-id: svn://localhost/gambas/trunk@5892 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2013-10-13 18:32:55 +00:00
parent 9326385a65
commit 690b7f56ba
2 changed files with 4 additions and 4 deletions

View File

@ -81,9 +81,9 @@ Static Public Sub Init()
'sTemp = Temp$()
'Copy "snippets" To sTemp
Load(Settings, False )
Load(Settings, False)
hSettings = New Settings("../snippets")
Load(hSettings, True )
Load(hSettings, True)
'Kill sTemp
@ -193,7 +193,7 @@ Private Sub Make(Optional iIndent As Integer) As String
Else If sVar = "$DESCRIPTION" Then
sCar = Project.Description
Else If sVar = "$AUTHOR" Or If sVar = "$AUTHORS" Then
sCar = Split(Project.Authors, "\n", "", True ).Join(", ")
sCar = Split(Project.Authors, "\n", "", True).Join(", ")
Else
sCar = sVar
Endif

View File

@ -1803,7 +1803,7 @@ Public Sub mnuEditWithProg_Click()
If sKey Then
If CanEdit(sKey) Then
hProcess = Last.Tag.Run(sKey)
hProcess.Ignore
hProcess.Ignore = True
Endif
Endif