mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 06:09:30 +02:00
Fppkg: Set modified flag when changing the build mode
git-svn-id: trunk@59984 -
This commit is contained in:
parent
f3eefeade7
commit
3784a09e1b
@ -76,6 +76,7 @@ type
|
||||
function GetCurrentPackageVariant: TFppkgPackageVariant;
|
||||
function GetCurrentPackageVariantItem: TFppkgPackageVariantItem;
|
||||
procedure seCompilerOptionsChange(Sender: TObject);
|
||||
procedure cbBuildMethodChange(Sender: TObject);
|
||||
protected
|
||||
FModified: Boolean;
|
||||
FPackageVariantList: TFppkgPackageVariantList;
|
||||
@ -447,6 +448,11 @@ begin
|
||||
inherited Destroy;
|
||||
end;
|
||||
|
||||
procedure TFppkgPackageOptionsFrm.cbBuildMethodChange(Sender: TObject);
|
||||
begin
|
||||
FModified := True;
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterIDEOptionsEditor(GroupPackage, TFppkgPackageOptionsFrm, FppkgPackageOptionID);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user