]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filesys.cpp
iphone additions
[wxWidgets.git] / 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;
 }