From 92bdf970c5070815d3bf05d3f84d83fb89ae7a88 Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Wed, 28 Jul 2010 22:58:16 +0000 Subject: [PATCH] Remove obsolete comment. --- src/xml/XMLTagHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml/XMLTagHandler.cpp b/src/xml/XMLTagHandler.cpp index 7bfa1b4a4..1a60efb48 100644 --- a/src/xml/XMLTagHandler.cpp +++ b/src/xml/XMLTagHandler.cpp @@ -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)