LCL: TXMLConfigStorage.Clear

git-svn-id: trunk@25922 -
This commit is contained in:
mattias 2010-06-05 15:35:41 +00:00
parent 160c2dc205
commit a31323c48b

View File

@ -89,6 +89,7 @@ type
procedure DeleteFullPath(const APath: string); override;
procedure DeleteFullPathValue(const APath: string); override;
public
procedure Clear; override;
constructor Create(const Filename: string; LoadFromDisk: Boolean); override;
constructor Create(TheXMLConfig: TXMLConfig);
constructor Create(TheXMLConfig: TXMLConfig; const StartPath: string);
@ -272,6 +273,11 @@ begin
XMLConfig.DeleteValue(APath);
end;
procedure TXMLConfigStorage.Clear;
begin
FXMLConfig.Clear;
end;
constructor TXMLConfigStorage.Create(const Filename: string;
LoadFromDisk: Boolean);
begin