IDE: changed class of "Select profiles to build" dialog from TGenericCheckListForm to TLazarusBuildManyDialog. The former type corresponds to generic dialog and poses potential risk of name clashing when storing layout. Patch by n7800.

(cherry picked from commit 1e7d5e9eeb)
This commit is contained in:
Maxim Ganetsky 2023-11-25 05:23:24 +03:00
parent 2d68d935f7
commit f8ce545ba2

View File

@ -206,6 +206,12 @@ type
property ProfileChanged: boolean read fProfileChanged write fProfileChanged;
end;
{ TLazarusBuildManyDialog }
TLazarusBuildManyDialog = class(TGenericCheckListForm)
// nothing, just ApplyLayout() requires a specific class name
end;
function GetMakeIDEConfigFilename: string;
function GetBackupExeFilename(Filename: string): string;
@ -1453,12 +1459,12 @@ procedure TConfigureBuildLazarusDlg.CompileAdvancedButtonClick(Sender: TObject);
// mrYes=save and compile
// mrCancel=do nothing
var
EditForm: TGenericCheckListForm;
EditForm: TLazarusBuildManyDialog;
i, ind: Integer;
begin
PrepareClose;
// Add a button for building all.
EditForm:=TGenericCheckListForm.CreateWithActionButton(lisBuild, 'menu_build');
EditForm:=TLazarusBuildManyDialog.CreateWithActionButton(lisBuild, 'menu_build');
try
EditForm.Caption:=lisLazBuildSelectProfilesToBuild;
// Copy profile names to checkboxlist and check the previously selected ones.