mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 21:41:35 +02:00
chmhelp: disable showing CodeBrowser on unknown identifiers. LHelp has its own search function
git-svn-id: trunk@53876 -
This commit is contained in:
parent
c8f26b3e53
commit
9bccfe6ab7
@ -34,6 +34,7 @@ uses
|
|||||||
Controls, Forms, Dialogs, LazHelpIntf, HelpIntfs, LCLPlatformDef, InterfaceBase,
|
Controls, Forms, Dialogs, LazHelpIntf, HelpIntfs, LCLPlatformDef, InterfaceBase,
|
||||||
// IdeIntf
|
// IdeIntf
|
||||||
PropEdits, IDEDialogs, MacroIntf, LazIDEIntf, IDEExternToolIntf, HelpFPDoc,
|
PropEdits, IDEDialogs, MacroIntf, LazIDEIntf, IDEExternToolIntf, HelpFPDoc,
|
||||||
|
IDEHelpIntf,
|
||||||
// ChmHelp
|
// ChmHelp
|
||||||
LHelpControl, ChmLangRef, ChmLcl, ChmProg;
|
LHelpControl, ChmLangRef, ChmLcl, ChmProg;
|
||||||
|
|
||||||
@ -142,6 +143,10 @@ begin
|
|||||||
LCLHelpDatabase.OnFindViewer := @ChmHelp.DBFindViewer;
|
LCLHelpDatabase.OnFindViewer := @ChmHelp.DBFindViewer;
|
||||||
RegisterFPCDirectivesHelpDatabase;
|
RegisterFPCDirectivesHelpDatabase;
|
||||||
FPCDirectivesHelpDatabase.OnFindViewer := @ChmHelp.DBFindViewer;
|
FPCDirectivesHelpDatabase.OnFindViewer := @ChmHelp.DBFindViewer;
|
||||||
|
|
||||||
|
// disable showing CodeBrowser on unknown identifiers. LHelp has its own
|
||||||
|
// search function.
|
||||||
|
LazarusHelp.ShowCodeBrowserOnUnknownIdentifier:=false;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user