mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-03 21:23:52 +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;
|
FCustomMacroFunction: TETMacroFunction;
|
||||||
FEnvironmentOverrides: TStringList;
|
FEnvironmentOverrides: TStringList;
|
||||||
FExecutable: string;
|
FExecutable: string;
|
||||||
|
FHint: string;
|
||||||
FQuiet: boolean;
|
FQuiet: boolean;
|
||||||
FResolveMacros: boolean;
|
FResolveMacros: boolean;
|
||||||
FScanners: TStrings;
|
FScanners: TStrings;
|
||||||
@ -613,6 +614,7 @@ type
|
|||||||
procedure Clear;
|
procedure Clear;
|
||||||
|
|
||||||
property Title: string read fTitle write fTitle;
|
property Title: string read fTitle write fTitle;
|
||||||
|
property Hint: string read FHint write FHint;
|
||||||
property Executable: string read FExecutable write FExecutable;
|
property Executable: string read FExecutable write FExecutable;
|
||||||
property Filename: string read FExecutable write FExecutable; deprecated;
|
property Filename: string read FExecutable write FExecutable; deprecated;
|
||||||
property CmdLineParams: string read fCmdLineParams write fCmdLineParams;
|
property CmdLineParams: string read fCmdLineParams write fCmdLineParams;
|
||||||
|
@ -557,6 +557,7 @@ begin
|
|||||||
Tool:=TIDEExternalToolOptions.Create;
|
Tool:=TIDEExternalToolOptions.Create;
|
||||||
try
|
try
|
||||||
Tool.Title:=Item.Title;
|
Tool.Title:=Item.Title;
|
||||||
|
Tool.Hint:='External tool '+IntToStr(Index+1);
|
||||||
Tool.Executable:=Item.Filename;
|
Tool.Executable:=Item.Filename;
|
||||||
Tool.WorkingDirectory:=Item.WorkingDirectory;
|
Tool.WorkingDirectory:=Item.WorkingDirectory;
|
||||||
Tool.CmdLineParams:=Item.CmdLineParams;
|
Tool.CmdLineParams:=Item.CmdLineParams;
|
||||||
|
Loading…
Reference in New Issue
Block a user