// Purpose: HTTP and FTP file system
// Author: Vaclav Slavik
// Copyright: (c) 1999 Vaclav Slavik
-// RCS-ID: $Id$
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#if wxUSE_FILESYSTEM && wxUSE_FS_INET
-#ifndef WXPRECOMP
+#ifndef WX_PRECOMP
#include "wx/module.h"
#endif
{
wxInputStream *s = url.GetInputStream();
wxString content = url.GetProtocol().GetContentType();
- if (content == wxEmptyString) content = GetMimeTypeFromExt(location);
if (s)
{
wxString tmpfile =
}
}
- return (wxFSFile*) NULL; // incorrect URL
+ return NULL; // incorrect URL
#endif
}
return true;
}
- virtual void OnExit()
+ virtual void OnExit()
{
delete wxFileSystem::RemoveHandler(m_handler);
}