mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 19:00:27 +02:00
fixed is checks for TCustomXXX controls
git-svn-id: trunk@4641 -
This commit is contained in:
parent
5b41e99986
commit
48414330a4
@ -420,7 +420,7 @@ Begin
|
|||||||
if (Data <> nil)
|
if (Data <> nil)
|
||||||
and (PChar(Data)^ <> #0)
|
and (PChar(Data)^ <> #0)
|
||||||
then begin
|
then begin
|
||||||
S := (Sender as TMemo).Text + PChar(Data);
|
S := (Sender as TCustomMemo).Text + PChar(Data);
|
||||||
SetLabel(Sender, PChar(S));
|
SetLabel(Sender, PChar(S));
|
||||||
end;
|
end;
|
||||||
End;
|
End;
|
||||||
@ -2792,6 +2792,9 @@ End;
|
|||||||
|
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.110 2003/09/18 12:17:25 mattias
|
||||||
|
fixed is checks for TCustomXXX controls
|
||||||
|
|
||||||
Revision 1.109 2003/09/18 12:15:01 mattias
|
Revision 1.109 2003/09/18 12:15:01 mattias
|
||||||
fixed is checks for TCustomXXX controls
|
fixed is checks for TCustomXXX controls
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user