mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 15:40:27 +02:00
LazUtils: fix spelling from Childs to Children
git-svn-id: trunk@37061 -
This commit is contained in:
parent
9fcb610a8e
commit
5fd04a633b
@ -645,7 +645,7 @@ end;
|
|||||||
OnlyChilds: boolean): boolean;
|
OnlyChilds: boolean): boolean;
|
||||||
------------------------------------------------------------------------------}
|
------------------------------------------------------------------------------}
|
||||||
function DeleteDirectory(const DirectoryName: string;
|
function DeleteDirectory(const DirectoryName: string;
|
||||||
OnlyChilds: boolean): boolean;
|
OnlyChildren: boolean): boolean;
|
||||||
var
|
var
|
||||||
FileInfo: TSearchRec;
|
FileInfo: TSearchRec;
|
||||||
CurSrcDir: String;
|
CurSrcDir: String;
|
||||||
@ -667,7 +667,7 @@ begin
|
|||||||
until FindNextUTF8(FileInfo)<>0;
|
until FindNextUTF8(FileInfo)<>0;
|
||||||
end;
|
end;
|
||||||
FindCloseUTF8(FileInfo);
|
FindCloseUTF8(FileInfo);
|
||||||
if (not OnlyChilds) and (not RemoveDirUTF8(DirectoryName)) then exit;
|
if (not OnlyChildren) and (not RemoveDirUTF8(DirectoryName)) then exit;
|
||||||
Result:=true;
|
Result:=true;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user