[DEVELOPMENT ENVIRONMENT]

* BUG: Fix insertion of predefined environment variables in the project 
  property dialog.


git-svn-id: svn://localhost/gambas/trunk@5014 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2012-08-06 21:34:51 +00:00
parent a7f59c80df
commit aab10df306
3 changed files with 11 additions and 8 deletions

View file

@ -2665,7 +2665,7 @@ msgstr ""
msgid "Create a shortcut on the desktop" msgid "Create a shortcut on the desktop"
msgstr "" msgstr ""
#: FMakeExecutable.class:18 FPropertyProject.class:1109 #: FMakeExecutable.class:18 FPropertyProject.class:1112
msgid "Gambas applications" msgid "Gambas applications"
msgstr "" msgstr ""
@ -3774,15 +3774,15 @@ msgstr ""
msgid "You are going to cancel your changes!" msgid "You are going to cancel your changes!"
msgstr "" msgstr ""
#: FPropertyProject.class:1108 #: FPropertyProject.class:1111
msgid "Select a Gambas application" msgid "Select a Gambas application"
msgstr "" msgstr ""
#: FPropertyProject.class:1119 #: FPropertyProject.class:1122
msgid "<b>&1</b> is already used as a library." msgid "<b>&1</b> is already used as a library."
msgstr "" msgstr ""
#: FPropertyProject.class:1125 #: FPropertyProject.class:1128
msgid "<b>&1</b> does not export any class." msgid "<b>&1</b> does not export any class."
msgstr "" msgstr ""

View file

@ -1019,12 +1019,15 @@ Public Sub mnuInsertEnv_Click()
aEnv[1] = aNewEnv[1] aEnv[1] = aNewEnv[1]
$aEnv[iInd] = aEnv[0] & "=" & aEnv[1] $aEnv[iInd] = aEnv[0] & "=" & aEnv[1]
tvwEnv.Refresh tvwEnv.Refresh
Continue sNewEnv = ""
Break
Endif Endif
Next Next
$aEnv.Add(sNewEnv) If sNewEnv Then
Inc tvwEnv.Rows.Count $aEnv.Add(sNewEnv)
Inc tvwEnv.Rows.Count
Endif
Next Next

View file

@ -55,7 +55,7 @@
MoveScaled(53,11,29,0) MoveScaled(53,11,29,0)
} }
{ HPanel1 HPanel { HPanel1 HPanel
MoveScaled(1,12,84,47) MoveScaled(1,11,84,47)
Expand = True Expand = True
AutoResize = True AutoResize = True
Spacing = True Spacing = True