mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-02-04 09:35:04 +01:00
* Changed SaveAs to SaveToFile
git-svn-id: trunk@27796 -
This commit is contained in:
parent
3eec9996bc
commit
9916cd839b
@ -76,7 +76,7 @@ type
|
||||
procedure OpenKey(const aPath: DOMString);
|
||||
procedure CloseKey;
|
||||
procedure ResetKey;
|
||||
procedure SaveAs(AFileName: string);
|
||||
procedure SaveToFile(AFileName: string);
|
||||
|
||||
function GetValue(const APath: DOMString; const ADefault: DOMString): DOMString; overload;
|
||||
function GetValue(const APath: DOMString; ADefault: Integer): Integer; overload;
|
||||
@ -131,11 +131,11 @@ procedure TXMLConfig.Flush;
|
||||
begin
|
||||
if Modified and not FReadOnly then
|
||||
begin
|
||||
SaveAs(FFilename)
|
||||
SaveToFile(FFilename)
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TXMLConfig.SaveAs(AFileName: string);
|
||||
procedure TXMLConfig.SaveToFile(AFileName: string);
|
||||
begin
|
||||
if AFileName <> '' then
|
||||
begin
|
||||
|
||||
Loading…
Reference in New Issue
Block a user