From: Vadim Zeitlin Date: Fri, 28 Jan 2000 20:53:14 +0000 (+0000) Subject: small compilation fix for !wxUSE_SOCKETS X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1845dd9923d1cf8d8ed039b9225356f3c45d1cb9?ds=sidebyside small compilation fix for !wxUSE_SOCKETS git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5716 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/html/test/test.cpp b/samples/html/test/test.cpp index f4561c9de1..cfb493b4ed 100644 --- a/samples/html/test/test.cpp +++ b/samples/html/test/test.cpp @@ -110,7 +110,7 @@ bool MyApp::OnInit() { wxInitAllImageHandlers(); - #if wxUSE_FS_INET + #if wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS wxFileSystem::AddHandler(new wxInternetFSHandler); #endif