mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 01:28:19 +02:00
LCL: Prevent "Abstract method called" also with FPC 3.0.0. Issue #27754.
git-svn-id: trunk@49711 -
This commit is contained in:
parent
0c5e2500dc
commit
6d50fc5c65
@ -172,7 +172,7 @@ type
|
||||
function ReadInt32: LongInt; override;
|
||||
function ReadInt64: Int64; override;
|
||||
function ReadSet(EnumType: Pointer): Integer; override;
|
||||
{$IF FPC_FULLVERSION >= 30001}
|
||||
{$IF FPC_FULLVERSION >= 30000}
|
||||
procedure ReadSignature; override;
|
||||
{$ENDIF}
|
||||
function ReadStr: String; override;
|
||||
@ -272,7 +272,7 @@ type
|
||||
procedure BeginCollection; override;{ Ends with the next "EndList" }
|
||||
procedure BeginComponent(Component: TComponent; Flags: TFilerFlags;
|
||||
ChildPos: Integer); override; { Ends after the second "EndList" }
|
||||
{$IF FPC_FULLVERSION >= 30001}
|
||||
{$IF FPC_FULLVERSION >= 30000}
|
||||
procedure WriteSignature; override;
|
||||
{$ENDIF}
|
||||
procedure BeginList; override;
|
||||
@ -4224,7 +4224,7 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
{$IF FPC_FULLVERSION >= 30001}
|
||||
{$IF FPC_FULLVERSION >= 30000}
|
||||
procedure TLRSObjectReader.ReadSignature;
|
||||
begin
|
||||
end;
|
||||
@ -4758,7 +4758,7 @@ begin
|
||||
EndHeader;
|
||||
end;
|
||||
|
||||
{$IF FPC_FULLVERSION >= 30001}
|
||||
{$IF FPC_FULLVERSION >= 30000}
|
||||
procedure TLRSObjectWriter.WriteSignature;
|
||||
begin
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user