custom tools, remove old deprecated setting

This commit is contained in:
Basile Burg 2016-10-16 18:12:21 +02:00
parent 82693baa1d
commit 4ceca1b9eb
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 0 additions and 16 deletions

View File

@ -37,9 +37,6 @@ type
procedure setParameters(value: TStringList);
procedure processOutput(sender: TObject);
procedure setToolAlias(value: string);
//
procedure setChainBefore(value: TStringList);
procedure setChainAfter(value: TStringList);
published
property toolAlias: string read fToolAlias write setToolAlias;
property options: TProcessOptions read fOpts write fOpts;
@ -53,9 +50,6 @@ type
property nextToolAlias: string read fNextToolAlias write fNextToolAlias;
property outputToNext: boolean read fOutputToNext write fOutputToNext;
property pipeInputKind: TPipeInputKind read fPipeInputKind write fPipeInputKind;
//
property chainBefore: TStringList write setChainBefore stored false; deprecated;
property chainAfter: TStringList write setChainAfter stored false; deprecated;
// TODO-cmaintenance: remove this property from version 3 update 1
property editorToInput: boolean read fEditorToInput write fEditorToInput stored false;
public
@ -147,16 +141,6 @@ begin
inherited;
end;
procedure TCEToolItem.setChainBefore(value: TStringList);
begin
// kept to reload old setting files. 'chainBefore' is not saved anymore.
end;
procedure TCEToolItem.setChainAfter(value: TStringList);
begin
// kept to reload old setting files. 'chainAfter' is not saved anymore.
end;
procedure TCEToolItem.assign(Source: TPersistent);
var
tool: TCEToolItem;