Backward-compatibility with older IDE versions for storing program arguments in the project file.

[DEVELOPMENT ENVIRONMENT]
* BUG: Backward-compatibility with older IDE versions for storing program arguments in the project file.
This commit is contained in:
Bruce Steers 2020-12-16 14:45:19 +00:00 committed by Benoît Minisini
parent e186a1b753
commit c7bef47759

View file

@ -3731,7 +3731,7 @@ Public Sub WriteProject(Optional bComponentDoNotChange As Boolean, Optional bMak
If Authors Then Print #hFile, "Authors="; Quote(Authors)
If Arguments.Count Then
Print #hFile, "ArgumentList="; Settings.ToString(Arguments)
Print #hFile, "Arguments="; Settings.ToString(Arguments)
If CurrentArgument And If CurrentArgument.Count Then Print #hFile, "CurrentArgumentList="; Settings.ToString(CurrentArgument)
Endif
If Environment.Count Then Print #hFile, "Environment="; Quote(Environment.Join("\n"))