we don't need to include wx/url.h from the header, we do need to include wx/uri.h from the .cpp file (fixes compilation when wxUSE_URL==0 but wxUSE_PROTOCOL_FILE==1)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43836 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-12-06 19:20:40 +00:00
parent 5ea50c92a5
commit 5059e05d42
2 changed files with 1 additions and 2 deletions

View File

@@ -17,7 +17,6 @@
#if wxUSE_PROTOCOL_FILE
#include "wx/protocol/protocol.h"
#include "wx/url.h"
class WXDLLIMPEXP_NET wxFileProto: public wxProtocol {
DECLARE_DYNAMIC_CLASS_NO_COPY(wxFileProto)

View File

@@ -21,7 +21,7 @@
#ifndef WX_PRECOMP
#endif
#include <stdio.h>
#include "wx/uri.h"
#include "wx/wfstream.h"
#include "wx/protocol/file.h"