mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 06:39:41 +02:00
fixed abstract constructor for fpc 1.0.10
git-svn-id: trunk@6718 -
This commit is contained in:
parent
61746df487
commit
d88e3f8196
@ -44,7 +44,7 @@ type
|
||||
procedure DeleteFullPath(const APath: string); virtual; abstract;
|
||||
procedure DeleteFullPathValue(const APath: string); virtual; abstract;
|
||||
public
|
||||
constructor Create(const Filename: string; LoadFromDisk: Boolean); virtual; abstract;
|
||||
constructor Create(const Filename: string; LoadFromDisk: Boolean); virtual;
|
||||
destructor Destroy; override;
|
||||
function GetValue(const APath, ADefault: String): String;
|
||||
function GetValue(const APath: String; ADefault: Integer): Integer;
|
||||
@ -73,6 +73,12 @@ implementation
|
||||
|
||||
{ TConfigStorage }
|
||||
|
||||
constructor TConfigStorage.Create(const Filename: string; LoadFromDisk: Boolean
|
||||
);
|
||||
begin
|
||||
|
||||
end;
|
||||
|
||||
destructor TConfigStorage.Destroy;
|
||||
begin
|
||||
FPathStack.Free;
|
||||
|
Loading…
Reference in New Issue
Block a user