mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 10:39:09 +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 DeleteFullPath(const APath: string); virtual; abstract;
|
||||||
procedure DeleteFullPathValue(const APath: string); virtual; abstract;
|
procedure DeleteFullPathValue(const APath: string); virtual; abstract;
|
||||||
public
|
public
|
||||||
constructor Create(const Filename: string; LoadFromDisk: Boolean); virtual; abstract;
|
constructor Create(const Filename: string; LoadFromDisk: Boolean); virtual;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
function GetValue(const APath, ADefault: String): String;
|
function GetValue(const APath, ADefault: String): String;
|
||||||
function GetValue(const APath: String; ADefault: Integer): Integer;
|
function GetValue(const APath: String; ADefault: Integer): Integer;
|
||||||
@ -73,6 +73,12 @@ implementation
|
|||||||
|
|
||||||
{ TConfigStorage }
|
{ TConfigStorage }
|
||||||
|
|
||||||
|
constructor TConfigStorage.Create(const Filename: string; LoadFromDisk: Boolean
|
||||||
|
);
|
||||||
|
begin
|
||||||
|
|
||||||
|
end;
|
||||||
|
|
||||||
destructor TConfigStorage.Destroy;
|
destructor TConfigStorage.Destroy;
|
||||||
begin
|
begin
|
||||||
FPathStack.Free;
|
FPathStack.Free;
|
||||||
|
Loading…
Reference in New Issue
Block a user