git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24665
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- 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')
# 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()
- wxFileSystem_AddHandler(wxZipFSHandler())
+ wx.FileSystem.AddHandler(wx.ZipFSHandler())
- helpctrl = wxHtmlHelpController()
+ helpctrl = wx.html.HtmlHelpController()
if cachedir:
helpctrl.SetTempDir(cachedir)
if cachedir:
helpctrl.SetTempDir(cachedir)
if __name__ == '__main__':
main()
if __name__ == '__main__':
main()