mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 00:23:38 +02:00
IDE: messages: hint for external tool
git-svn-id: trunk@45157 -
This commit is contained in:
parent
d8e83aafcf
commit
bbd5c7e16f
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user