]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed apparently erroneous manipulation of filename/URL
authorJulian Smart <julian@anthemion.co.uk>
Fri, 6 Dec 2002 20:12:48 +0000 (20:12 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 6 Dec 2002 20:12:48 +0000 (20:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18066 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/filesys.cpp

index 8e26b5d9042a2d65ddabab31b6e0901a188e9f3c..97d2f78d4be27c5cad872a0de849423bb967e896 100644 (file)
@@ -431,6 +431,7 @@ wxString wxFileSystem::URLToNativePath( const wxString& url )
                path = path.Mid(7) ;
        }
 
+/*
        // file urls either start with a forward slash (local harddisk),
     // otherwise they have a servername/sharename notation,
     // which only exists on msw and corresponds to a unc
@@ -446,6 +447,8 @@ wxString wxFileSystem::URLToNativePath( const wxString& url )
                path = wxT("\\\\") + path ;
        }
 #endif
+*/
+
        path.Replace(g_unixPathString, g_nativePathString) ;
 
        return path ;
@@ -455,6 +458,8 @@ wxString wxFileSystem::URLToNativePath( const wxString& url )
 wxString wxFileSystem::NativePathToURL( const wxString& path ) 
 {
        wxString url = path ;
+
+/*
 #ifdef __WXMSW__
        // unc notation
        if ( url.Find(wxT("\\\\")) == 0 ) 
@@ -466,6 +471,8 @@ wxString wxFileSystem::NativePathToURL( const wxString& path )
        {
                url = wxT("/") + url ;
        }
+*/
+
        url.Replace(g_nativePathString, g_unixPathString) ;
        url = wxT("file://") + url ;
        return url ;