mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 16:31:40 +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;
|
||||
------------------------------------------------------------------------------}
|
||||
function DeleteDirectory(const DirectoryName: string;
|
||||
OnlyChilds: boolean): boolean;
|
||||
OnlyChildren: boolean): boolean;
|
||||
var
|
||||
FileInfo: TSearchRec;
|
||||
CurSrcDir: String;
|
||||
@ -667,7 +667,7 @@ begin
|
||||
until FindNextUTF8(FileInfo)<>0;
|
||||
end;
|
||||
FindCloseUTF8(FileInfo);
|
||||
if (not OnlyChilds) and (not RemoveDirUTF8(DirectoryName)) then exit;
|
||||
if (not OnlyChildren) and (not RemoveDirUTF8(DirectoryName)) then exit;
|
||||
Result:=true;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user