From de4c8cb5963609b97dd1bda4dd12c284a2c98a47 Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 21 Apr 2010 02:11:48 +0000 Subject: [PATCH] ideintf: set multy-line editor for all 'Hint' properties of TComponent descendant (issue #0016303) git-svn-id: trunk@24779 - --- ideintf/propedits.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ideintf/propedits.pp b/ideintf/propedits.pp index 6dac39967d..faa0e9014e 100644 --- a/ideintf/propedits.pp +++ b/ideintf/propedits.pp @@ -6158,7 +6158,7 @@ begin RegisterPropertyEditor(TypeInfo(TTranslateString), TCustomLabel, 'Caption', TStringMultilinePropertyEditor); RegisterPropertyEditor(TypeInfo(TTranslateString), TCustomStaticText, 'Caption', TStringMultilinePropertyEditor); RegisterPropertyEditor(TypeInfo(TTranslateString), TCustomCheckBox, 'Caption', TStringMultilinePropertyEditor); - RegisterPropertyEditor(TypeInfo(TTranslateString), TControl, 'Hint', TStringMultilinePropertyEditor); + RegisterPropertyEditor(TypeInfo(TTranslateString), TComponent, 'Hint', TStringMultilinePropertyEditor); RegisterPropertyEditor(TypeInfo(TTabOrder), TControl, 'TabOrder', TTabOrderPropertyEditor); RegisterPropertyEditor(TypeInfo(ShortString), nil, '', TCaptionPropertyEditor); RegisterPropertyEditor(TypeInfo(TStrings), nil, '', TStringsPropertyEditor);