+bool wxFileSystem::FindFileInPath(wxString *pStr,
+ const wxChar *path,
+ const wxChar *basename)
+{
+ // we assume that it's not empty
+ wxCHECK_MSG( !wxIsEmpty(basename), false,
+ _T("empty file name in wxFileSystem::FindFileInPath"));
+
+ // skip path separator in the beginning of the file name if present
+ if ( wxIsPathSeparator(*basename) )
+ basename++;