mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-24 12:39:23 +02:00
LCL: removed useless property setter
git-svn-id: trunk@33524 -
This commit is contained in:
parent
241f651b88
commit
9b08f69b27
@ -473,7 +473,6 @@ type
|
||||
procedure SetFormBorderStyle(NewStyle: TFormBorderStyle);
|
||||
procedure SetCancelControl(NewControl: TControl);
|
||||
procedure SetDefaultControl(NewControl: TControl);
|
||||
procedure SetDesigner(Value : TIDesigner);
|
||||
procedure SetFormStyle(Value : TFormStyle);
|
||||
procedure SetIcon(AValue: TIcon);
|
||||
procedure SetMenu(Value: TMainMenu);
|
||||
@ -653,7 +652,7 @@ type
|
||||
property DefaultControl: TControl read FDefaultControl write SetDefaultControl;
|
||||
property DefaultMonitor: TDefaultMonitor read FDefaultMonitor
|
||||
write FDefaultMonitor default dmActiveForm;
|
||||
property Designer: TIDesigner read FDesigner write SetDesigner;
|
||||
property Designer: TIDesigner read FDesigner write FDesigner;
|
||||
property FormState: TFormState read FFormState;
|
||||
property FormStyle: TFormStyle read FFormStyle write SetFormStyle
|
||||
default fsNormal;
|
||||
|
@ -1102,14 +1102,6 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
TCustomForm SetDesigner
|
||||
------------------------------------------------------------------------------}
|
||||
procedure TCustomForm.SetDesigner(Value : TIDesigner);
|
||||
Begin
|
||||
FDesigner := Value;
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
procedure TCustomForm.SetZOrder(Topmost: Boolean);
|
||||
------------------------------------------------------------------------------}
|
||||
|
Loading…
Reference in New Issue
Block a user