mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 03:18:55 +02:00
lcl: fix compilation with fpc 2.5.1
git-svn-id: trunk@21275 -
This commit is contained in:
parent
cb375e7df1
commit
0b5803fbb1
@ -267,7 +267,7 @@ var
|
||||
APoint: TPoint;
|
||||
begin
|
||||
inherited Create(AManager, AControl);
|
||||
AControl.DoStartDock(FDockObject);
|
||||
AControl.DoStartDock(TDragObject(FDockObject));
|
||||
if FDockObject = nil then
|
||||
FDockObject := TDragDockObject.AutoCreate(AControl);
|
||||
|
||||
|
@ -146,7 +146,7 @@ var
|
||||
|
||||
function SendApplicationMessage(Msg: Cardinal; WParam: WParam; LParam: LParam):Longint;
|
||||
procedure OwnerFormDesignerModified(AComponent: TComponent);
|
||||
procedure FreeThenNil(var AnObject: TObject);
|
||||
procedure FreeThenNil(var obj);
|
||||
|
||||
{ the LCL interfaces finalization sections are called before the finalization
|
||||
sections of the LCL. Those parts, that should be finalized after the LCL, can
|
||||
@ -1326,11 +1326,12 @@ Begin
|
||||
Result := False;
|
||||
end;
|
||||
|
||||
procedure FreeThenNil(var AnObject: TObject);
|
||||
procedure FreeThenNil(var obj);
|
||||
begin
|
||||
if AnObject<>nil then begin
|
||||
AnObject.Free;
|
||||
AnObject:=nil;
|
||||
if Pointer(obj) <> nil then
|
||||
begin
|
||||
TObject(obj).Free;
|
||||
Pointer(obj) := nil;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user