allow periods in wxFileSystem URL anchors (patch #2265) [backport from trunk]
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@55271 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -188,8 +188,10 @@ wxString wxFileSystemHandler::GetAnchor(const wxString& location) const
|
||||
|
||||
for (int i = l-1; i >= 0; i--) {
|
||||
c = location[i];
|
||||
if (c == wxT('#')) return location.Right(l-i-1);
|
||||
else if ((c == wxT('.')) || (c == wxT('/')) || (c == wxT('\\')) || (c == wxT(':'))) return wxEmptyString;
|
||||
if (c == wxT('#'))
|
||||
return location.Right(l-i-1);
|
||||
else if ((c == wxT('/')) || (c == wxT('\\')) || (c == wxT(':')))
|
||||
return wxEmptyString;
|
||||
}
|
||||
return wxEmptyString;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user