From bd6882eed7606652db9c6ea0cd90cb2986f7dd73 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 6 Nov 1999 15:25:06 +0000 Subject: [PATCH] modified samples/html/test so that it loads inet fs handler git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4392 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/html/test/test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/samples/html/test/test.cpp b/samples/html/test/test.cpp index f40f567cc7..ed81723f0b 100644 --- a/samples/html/test/test.cpp +++ b/samples/html/test/test.cpp @@ -118,6 +118,9 @@ #if wxUSE_GIF wxImage::AddHandler(new wxGIFHandler); #endif + #if wxUSE_FS_INET + wxFileSystem::AddHandler(new wxInternetFSHandler); + #endif // Create the main application window MyFrame *frame = new MyFrame("wxHtmlWindow testing application", wxPoint(50, 50), wxSize(640, 480)); -- 2.45.2