mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-27 10:20:19 +02:00
* Delphi compat, TButton.Click is public
git-svn-id: trunk@6978 -
This commit is contained in:
parent
b9a3f7efef
commit
cc648ec617
@ -97,6 +97,8 @@ type
|
||||
{ TButton }
|
||||
|
||||
TButton = class(TCustomButton)
|
||||
public
|
||||
procedure Click; override;
|
||||
published
|
||||
property Action;
|
||||
property Align;
|
||||
@ -397,6 +399,9 @@ end.
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.92 2005/03/18 01:18:44 marc
|
||||
* Delphi compat, TButton.Click is public
|
||||
|
||||
Revision 1.91 2005/03/07 00:52:51 mattias
|
||||
various Delphi compatibilities from C Western
|
||||
|
||||
|
@ -222,9 +222,21 @@ begin
|
||||
Result:=false;
|
||||
end;
|
||||
|
||||
|
||||
{ TButton }
|
||||
|
||||
procedure TButton.Click;
|
||||
begin
|
||||
inherited Click;
|
||||
end;
|
||||
|
||||
|
||||
{ =============================================================================
|
||||
|
||||
$Log$
|
||||
Revision 1.42 2005/03/18 01:18:44 marc
|
||||
* Delphi compat, TButton.Click is public
|
||||
|
||||
Revision 1.41 2005/02/21 13:54:26 mattias
|
||||
added navigation key check for up/down already handled
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user