1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-24 00:18:07 +02:00

Remove obsolete comment.

This commit is contained in:
v.audacity 2010-07-28 22:58:16 +00:00
parent 971f039033
commit 92bdf970c5

View File

@ -96,7 +96,7 @@ bool XMLValueChecker::IsGoodFileString(wxString str)
return (IsGoodString(str) &&
!str.IsEmpty() &&
(str.Length() <= 260) && // FILENAME_MAX is 260 in MSVC, but inconsistent across platforms, sometimes huge.
(str.Find(wxFileName::GetPathSeparator()) == -1)); // No path separator characters. //vvv (this won't work on CVS HEAD)
(str.Find(wxFileName::GetPathSeparator()) == -1)); // No path separator characters.
}
bool XMLValueChecker::IsGoodInt(const wxString strInt)