From: Robin Dunn Date: Wed, 26 Nov 2003 06:11:01 +0000 (+0000) Subject: wx namespace X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e6c3f9eb6af1c2d787697d362192b8ca1407f261 wx namespace git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24665 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/tools/helpviewer.py b/wxPython/wx/tools/helpviewer.py index 0d35e5ae3a..b025eccce1 100644 --- a/wxPython/wx/tools/helpviewer.py +++ b/wxPython/wx/tools/helpviewer.py @@ -41,28 +41,23 @@ def main(args=sys.argv): print __doc__ return - from wxPython.wx import wxPySimpleApp, wxConfigBase_Get, \ - wxLog_SetActiveTarget, wxLogStderr, \ - wxLog_SetLogLevel, wxLOG_Error, \ - wxFileSystem_AddHandler, wxZipFSHandler - import wxPython.html - from wxPython.htmlhelp import wxHtmlHelpController + import wx + import wx.html - - app = wxPySimpleApp() - #wxLog_SetActiveTarget(wxLogStderr()) - wxLog_SetLogLevel(wxLOG_Error) + app = wx.PySimpleApp() + #wx.Log.SetActiveTarget(wx.LogStderr()) + wx.Log.SetLogLevel(wx.LOG_Error) # Set up the default config so the htmlhelp frame can save its preferences app.SetVendorName('wxWindows') app.SetAppName('helpviewer') - cfg = wxConfigBase_Get() + cfg = wx.ConfigBase.Get() # Add the Zip filesystem - wxFileSystem_AddHandler(wxZipFSHandler()) + wx.FileSystem.AddHandler(wx.ZipFSHandler()) # Create the viewer - helpctrl = wxHtmlHelpController() + helpctrl = wx.html.HtmlHelpController() if cachedir: helpctrl.SetTempDir(cachedir) @@ -78,3 +73,5 @@ def main(args=sys.argv): if __name__ == '__main__': main() + +