mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-30 11:30:28 +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 SetFormBorderStyle(NewStyle: TFormBorderStyle);
|
||||||
procedure SetCancelControl(NewControl: TControl);
|
procedure SetCancelControl(NewControl: TControl);
|
||||||
procedure SetDefaultControl(NewControl: TControl);
|
procedure SetDefaultControl(NewControl: TControl);
|
||||||
procedure SetDesigner(Value : TIDesigner);
|
|
||||||
procedure SetFormStyle(Value : TFormStyle);
|
procedure SetFormStyle(Value : TFormStyle);
|
||||||
procedure SetIcon(AValue: TIcon);
|
procedure SetIcon(AValue: TIcon);
|
||||||
procedure SetMenu(Value: TMainMenu);
|
procedure SetMenu(Value: TMainMenu);
|
||||||
@ -653,7 +652,7 @@ type
|
|||||||
property DefaultControl: TControl read FDefaultControl write SetDefaultControl;
|
property DefaultControl: TControl read FDefaultControl write SetDefaultControl;
|
||||||
property DefaultMonitor: TDefaultMonitor read FDefaultMonitor
|
property DefaultMonitor: TDefaultMonitor read FDefaultMonitor
|
||||||
write FDefaultMonitor default dmActiveForm;
|
write FDefaultMonitor default dmActiveForm;
|
||||||
property Designer: TIDesigner read FDesigner write SetDesigner;
|
property Designer: TIDesigner read FDesigner write FDesigner;
|
||||||
property FormState: TFormState read FFormState;
|
property FormState: TFormState read FFormState;
|
||||||
property FormStyle: TFormStyle read FFormStyle write SetFormStyle
|
property FormStyle: TFormStyle read FFormStyle write SetFormStyle
|
||||||
default fsNormal;
|
default fsNormal;
|
||||||
|
@ -1102,14 +1102,6 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{------------------------------------------------------------------------------
|
|
||||||
TCustomForm SetDesigner
|
|
||||||
------------------------------------------------------------------------------}
|
|
||||||
procedure TCustomForm.SetDesigner(Value : TIDesigner);
|
|
||||||
Begin
|
|
||||||
FDesigner := Value;
|
|
||||||
end;
|
|
||||||
|
|
||||||
{------------------------------------------------------------------------------
|
{------------------------------------------------------------------------------
|
||||||
procedure TCustomForm.SetZOrder(Topmost: Boolean);
|
procedure TCustomForm.SetZOrder(Topmost: Boolean);
|
||||||
------------------------------------------------------------------------------}
|
------------------------------------------------------------------------------}
|
||||||
|
Loading…
Reference in New Issue
Block a user