lcl: don't call TextChanged directly, use CM_TEXTCHANGED notification instead

git-svn-id: trunk@20060 -
This commit is contained in:
paul 2009-05-20 03:06:52 +00:00
parent 7f29518b52
commit 9b7b96648b

View File

@ -3756,7 +3756,7 @@ procedure TControl.RealSetText(const Value: TCaption);
begin
if RealGetText = Value then Exit;
FCaption := Value;
TextChanged;
Perform(CM_TEXTCHANGED, 0, 0);
end;
procedure TControl.TextChanged;