]> git.saurik.com Git - wxWidgets.git/commitdiff
allow periods in wxFileSystem URL anchors (patch #2265)
authorVáclav Slavík <vslavik@fastmail.fm>
Sat, 31 May 2008 09:44:03 +0000 (09:44 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sat, 31 May 2008 09:44:03 +0000 (09:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53876 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filesys.cpp

index 71dc13788b64e584e8970e1a8ceadd764827c200..fc12af7d55762f6c4504186faf937d23fce932bc 100644 (file)
@@ -193,8 +193,10 @@ wxString wxFileSystemHandler::GetAnchor(const wxString& location)
 
     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;
 }