added imports for missing items

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18420 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-12-27 03:57:40 +00:00
parent 1cd902a094
commit 79649b31d6

View File

@@ -6,6 +6,8 @@
from xxx import * # xxx imports globals and params
from undo import *
from wxPython.html import wxHtmlWindow
# Properties panel containing notebook
class Panel(wxNotebook):
@@ -67,9 +69,10 @@ class Panel(wxNotebook):
else: # nothing selected
# If first time, show some help
if g.conf.panic:
import xrced
html = wxHtmlWindow(self.page1, -1, wxDefaultPosition,
wxDefaultSize, wxSUNKEN_BORDER)
html.SetPage(helpText)
html.SetPage(xrced.helpText)
sizer.Add(html, 1, wxEXPAND)
g.conf.panic = false
else: