IDE: messages: hint for external tool

git-svn-id: trunk@45157 -
This commit is contained in:
mattias 2014-05-23 14:05:14 +00:00
parent d8e83aafcf
commit bbd5c7e16f
2 changed files with 3 additions and 0 deletions

View File

@ -598,6 +598,7 @@ type
FCustomMacroFunction: TETMacroFunction;
FEnvironmentOverrides: TStringList;
FExecutable: string;
FHint: string;
FQuiet: boolean;
FResolveMacros: boolean;
FScanners: TStrings;
@ -613,6 +614,7 @@ type
procedure Clear;
property Title: string read fTitle write fTitle;
property Hint: string read FHint write FHint;
property Executable: string read FExecutable write FExecutable;
property Filename: string read FExecutable write FExecutable; deprecated;
property CmdLineParams: string read fCmdLineParams write fCmdLineParams;

View File

@ -557,6 +557,7 @@ begin
Tool:=TIDEExternalToolOptions.Create;
try
Tool.Title:=Item.Title;
Tool.Hint:='External tool '+IntToStr(Index+1);
Tool.Executable:=Item.Filename;
Tool.WorkingDirectory:=Item.WorkingDirectory;
Tool.CmdLineParams:=Item.CmdLineParams;