mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: Sort files in CFileContainer::addSearchPath too
This commit is contained in:
parent
6fe4c728ba
commit
7495d3f611
1 changed files with 7 additions and 1 deletions
|
@ -1033,6 +1033,9 @@ void CFileContainer::addSearchPath (const string &path, bool recurse, bool alter
|
|||
{
|
||||
// find all path and subpath
|
||||
getPathContent (newPath, recurse, true, false, pathsToProcess, progressCallBack);
|
||||
|
||||
// sort files
|
||||
sort(pathsToProcess.begin(), pathsToProcess.end());
|
||||
}
|
||||
|
||||
for (uint p = 0; p < pathsToProcess.size(); p++)
|
||||
|
@ -1078,7 +1081,10 @@ void CFileContainer::addSearchPath (const string &path, bool recurse, bool alter
|
|||
// find all files in the path and subpaths
|
||||
getPathContent (newPath, recurse, false, true, filesToProcess, progressCallBack);
|
||||
|
||||
// Progree bar
|
||||
// sort files
|
||||
sort(filesToProcess.begin(), filesToProcess.end());
|
||||
|
||||
// Progress bar
|
||||
if (progressCallBack)
|
||||
{
|
||||
progressCallBack->popCropedValues ();
|
||||
|
|
Loading…
Reference in a new issue