From: Václav Slavík Date: Tue, 27 Nov 2001 18:13:31 +0000 (+0000) Subject: compilation fix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/954cc8d2f2b4c8395bdd2ffb107900d5e5f17a07 compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12731 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/html/test/test.cpp b/samples/html/test/test.cpp index 4dbabea04b..b9430b0c67 100644 --- a/samples/html/test/test.cpp +++ b/samples/html/test/test.cpp @@ -132,12 +132,14 @@ class BoldProcessor : public wxHtmlProcessor bool MyApp::OnInit() { wxLog::AddTraceMask(wxT("strconv")); +#if wxUSE_SYSTEM_OPTIONS wxSystemOptions::SetOption(wxT("no-maskblt"), 1); +#endif wxInitAllImageHandlers(); - #if wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS +#if wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS wxFileSystem::AddHandler(new wxInternetFSHandler); - #endif +#endif SetVendorName("wxWindows"); SetAppName("wxHtmlTest");