Don't call FileSet::IsADirectory because this is where it is supposed to be set and it will always return false.

This commit is contained in:
Steve Checkoway
2003-07-04 00:23:04 +00:00
parent 1150d092ae
commit 01f1aa02e8
+1 -1
View File
@@ -93,7 +93,7 @@ void FileSet::LoadFromDir(const CString &dir)
File f;
f.name=ent->d_name;
f.dir = IsADirectory(ent->d_name);
f.dir = ::IsADirectory(ent->d_name);
files.insert(f);
}