| 76 | } |
| 77 | |
| 78 | bool XMLValueChecker::IsGoodPathName(const FilePath & strPathName) |
| 79 | { |
| 80 | // Test the corresponding wxFileName. |
| 81 | wxFileName fileName(strPathName); |
| 82 | return XMLValueChecker::IsGoodFileName(fileName.GetFullName(), fileName.GetPath(wxPATH_GET_VOLUME)); |
| 83 | } |
| 84 | |
| 85 | bool XMLValueChecker::IsGoodPathString(const FilePath &str) |
| 86 | { |
nothing calls this directly
no test coverage detected