deprecated and renamed ambiguous imports and includes options

imports -> importStringPaths
includes -> importModulePaths
This commit is contained in:
Basile Burg 2015-01-27 07:53:01 +01:00
parent 0cf14a95a4
commit 9beabab8e5
1 changed files with 4 additions and 2 deletions

View File

@ -225,8 +225,10 @@ type
property Sources: TStringList read fExtraSrcs write setSrcs stored false; deprecated; property Sources: TStringList read fExtraSrcs write setSrcs stored false; deprecated;
property exclusions: TStringList read fExcl write setExcl; property exclusions: TStringList read fExcl write setExcl;
property extraSources: TStringList read fExtraSrcs write setSrcs; property extraSources: TStringList read fExtraSrcs write setSrcs;
property includes: TStringList read fIncl write setIncl; property includes: TStringList read fIncl write setIncl; deprecated;
property imports: TStringList read fImpt write setImpt; property imports: TStringList read fImpt write setImpt; deprecated;
property importModulePaths: TStringList read fIncl write setIncl;
property importStringPaths: TStringList read fImpt write setImpt;
public public
constructor create; constructor create;
destructor destroy; override; destructor destroy; override;