prevent to store a default value

This commit is contained in:
Basile Burg 2016-11-14 15:04:21 +01:00
parent 470e193f4d
commit e91831c3b7
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ type
property Sources: TStringList read fSrcs write setSrcs; // 'read' should return a copy to avoid abs/rel errors
property ConfigurationIndex: Integer read fConfIx write setConfIx;
property LibraryAliases: TStringList read fLibAliases write setLibAliases;
property AutoSolveDependencies: boolean read fAutoDeps write fAutoDeps;
property AutoSolveDependencies: boolean read fAutoDeps write fAutoDeps default false;
public
constructor create(aOwner: TComponent); override;
destructor destroy; override;