IDE: Move registration of TFileNamePropertyEditor into a better place.

git-svn-id: trunk@62990 -
This commit is contained in:
juha 2020-04-15 19:33:47 +00:00
parent 5d0de1d6ab
commit 8f3367550c
2 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@ uses
// BuildIntf
BaseIDEIntf, IDEOptionsIntf, CompOptsIntf, ProjectIntf, IDEExternToolIntf,
// IdeIntf
IDEOptEditorIntf, SrcEditorIntf, IDEWindowIntf, PropEdits;
IDEOptEditorIntf, SrcEditorIntf, IDEWindowIntf;
type
TIDEDirective = (
@ -1124,9 +1124,5 @@ begin
RemoveHandler(lihtShowSourceOfActiveDesignerForm,TMethod(OnShowSourceOfActiveDesignerForm));
end;
initialization
RegisterPropertyEditor(TypeInfo(AnsiString),
THTMLBrowserHelpViewer,'BrowserPath',TFileNamePropertyEditor);
end.

View File

@ -1685,5 +1685,9 @@ begin
end;
initialization
RegisterPropertyEditor(TypeInfo(AnsiString),
THTMLBrowserHelpViewer,'BrowserPath',TFileNamePropertyEditor);
end.