mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 10:37:58 +02:00
Project Templates: Give variables a default value when not typed by user.
This commit is contained in:
parent
ce4661f5ec
commit
7e1fcc4033
@ -77,6 +77,8 @@ begin
|
||||
begin
|
||||
FVariables.GetNameValue(I,N,V);
|
||||
V:=SGVariables.Cells[1,I+1];
|
||||
if V='' then
|
||||
V:=N; // Let Value=Name if not given by user.
|
||||
FVariables[i]:=N+'='+V;
|
||||
end;
|
||||
end;
|
||||
@ -92,6 +94,8 @@ begin
|
||||
ProjNameLabel.Caption:= SNameforProject;
|
||||
DEDestDirLabel.Caption:= SCreateinDir;
|
||||
PDescription.Caption:= SThisProject;
|
||||
// This is good for most projects and can be changed later. Only directory must be selected.
|
||||
EProjectName.Text:='project1';
|
||||
EssentialDataChange(Nil);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user