"" -> CString()

This commit is contained in:
Glenn Maynard
2005-11-02 15:52:08 +00:00
parent 6c859a7631
commit f90a88719d
+1 -1
View File
@@ -246,7 +246,7 @@ void FilenameDB::GetFilesSimpleMatch( const CString &sDir, const CString &sMask,
{ {
/* Only one *: "A*B". */ /* Only one *: "A*B". */
/* XXX: "_blank.png*.png" shouldn't match the file "_blank.png". */ /* XXX: "_blank.png*.png" shouldn't match the file "_blank.png". */
GetFilesMatching( sDir, sMask.substr(0, first_pos), "", sMask.substr(first_pos+1), asOut, bOnlyDirs ); GetFilesMatching( sDir, sMask.substr(0, first_pos), CString(), sMask.substr(first_pos+1), asOut, bOnlyDirs );
return; return;
} }