mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 14:37:48 +02:00
* IDE help: do not save option CHMHelp/HelpLabel (by moving property from published to public; should be ok as only IDE uses it) as it is calculated on-the-fly
git-svn-id: trunk@46570 -
This commit is contained in:
parent
5af82b4bad
commit
677d2c1452
@ -84,12 +84,15 @@ type
|
||||
function GetLocalizedName: string; override;
|
||||
function GetHelpEXE: String; // macros resolved, see property HelpEXE
|
||||
function GetHelpFilesPath: String; // macros resolved, see property HelpFilesPath
|
||||
// ID used for SimpleIPC communication with the help viewer
|
||||
// Used to be published before Laz 1.3=>saves in tools/options;
|
||||
// this is no longer necessary or desirable as helplabel is unique per session
|
||||
// and calculated on-the-fly.
|
||||
property HelpLabel: String read GetHelpLabel write SetHelpLabel;
|
||||
published
|
||||
// Path and filename of help executable
|
||||
// With macros, see GetHelpEXE
|
||||
property HelpEXE: String read fHelpEXE write SetHelpEXE;
|
||||
// ID used for SimpleIPC communication with the help viewer
|
||||
property HelpLabel: String read GetHelpLabel write SetHelpLabel;
|
||||
// Where to look for help files.
|
||||
// Directories separated with semicolon, with macros, see GetHelpFilesPath
|
||||
property HelpFilesPath: String read fCHMSearchPath write SetChmsFilePath;
|
||||
|
Loading…
Reference in New Issue
Block a user