From: Robin Dunn Date: Fri, 12 Mar 2004 20:16:01 +0000 (+0000) Subject: fixed a failure message X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/21b227f211df3c3fd52d75afd4febf7704e76192 fixed a failure message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26192 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/IEHtmlWin.py b/wxPython/demo/IEHtmlWin.py index 874580dd2b..56e4c57935 100644 --- a/wxPython/demo/IEHtmlWin.py +++ b/wxPython/demo/IEHtmlWin.py @@ -187,7 +187,7 @@ def runTest(frame, nb, log): win = TestPanel(nb, log, frame) return win else: - dlg = wx.MessageDialog(frame, 'This demo only works on MSW.', + dlg = wx.MessageDialog(frame, 'This demo only works on Windows.', 'Sorry', wx.OK | wx.ICON_INFORMATION) dlg.ShowModal() dlg.Destroy()