X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec873c943d71f0d5f13e3398557071448cda6c23..a4027e74873007e3430af3bd77019bcab76f6c04:/wxPython/samples/wxPIA_book/Chapter-16/html_window.py
diff --git a/wxPython/samples/wxPIA_book/Chapter-16/html_window.py b/wxPython/samples/wxPIA_book/Chapter-16/html_window.py
deleted file mode 100644
index 9f73b68122..0000000000
--- a/wxPython/samples/wxPIA_book/Chapter-16/html_window.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import wx
-import wx.html
-
-class MyHtmlFrame(wx.Frame):
- def __init__(self, parent, title):
- wx.Frame.__init__(self, parent, -1, title)
- html = wx.html.HtmlWindow(self)
- if "gtk2" in wx.PlatformInfo:
- html.SetStandardFonts()
-
- html.SetPage(
- "Here is some formatted text "
- "loaded from a string.")
-
-
-app = wx.PySimpleApp()
-frm = MyHtmlFrame(None, "Simple HTML")
-frm.Show()
-app.MainLoop()