mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Sort files in CFileContainer::addSearchPath too
--HG-- branch : develop
This commit is contained in:
parent
bb429f0ea9
commit
93a708400e
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
|
// find all path and subpath
|
||||||
getPathContent (newPath, recurse, true, false, pathsToProcess, progressCallBack);
|
getPathContent (newPath, recurse, true, false, pathsToProcess, progressCallBack);
|
||||||
|
|
||||||
|
// sort files
|
||||||
|
sort(pathsToProcess.begin(), pathsToProcess.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
for (uint p = 0; p < pathsToProcess.size(); p++)
|
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
|
// find all files in the path and subpaths
|
||||||
getPathContent (newPath, recurse, false, true, filesToProcess, progressCallBack);
|
getPathContent (newPath, recurse, false, true, filesToProcess, progressCallBack);
|
||||||
|
|
||||||
// Progree bar
|
// sort files
|
||||||
|
sort(filesToProcess.begin(), filesToProcess.end());
|
||||||
|
|
||||||
|
// Progress bar
|
||||||
if (progressCallBack)
|
if (progressCallBack)
|
||||||
{
|
{
|
||||||
progressCallBack->popCropedValues ();
|
progressCallBack->popCropedValues ();
|
||||||
|
|
Loading…
Reference in a new issue