]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filesys.cpp
Unused parameter warning fix.
[wxWidgets.git] / src / common / filesys.cpp
index 5e10fd8d447608a1455a4868bfb9510d0aa85065..814d17d6a6dbd4f5dbec199443c35c51ec60308c 100644 (file)
@@ -4,7 +4,7 @@
 // Author:      Vaclav Slavik
 // Copyright:   (c) 1999 Vaclav Slavik
 // CVS-ID:      $Id$
-// Licence:     wxWindows Licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
@@ -519,7 +519,7 @@ wxString wxFileSystem::FileNameToURL(const wxFileName& filename)
     // unc notation, wxMSW
     if ( url.Find(wxT("\\\\")) == 0 ) 
     {
-        url = url.Mid(2);
+        url = wxT("//") + url.Mid(2);
     }
     else
     {