]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxPython/tests/ste.py
no message
[wxWidgets.git] / utils / wxPython / tests / ste.py
index 30e1cc47afe67dfd0f31a0da5944ff3c771b57e9..08c5e277321c5fd5fa707b79292e3c1b26375b96 100644 (file)
@@ -1,12 +1,12 @@
 
 
 from wxPython.wx import *
-from wxPython.ste import wxStyledTextEditorCtrl
+from wxPython.ste import wxStyledTextCtrl
 
 
 app = wxPySimpleApp()
 frame = wxFrame(None, -1, "Testing...", (0,0), (320,480))
-ed = wxStyledTextEditorCtrl(frame, -1)
+ed = wxStyledTextCtrl(frame, -1)
 ed.AddText(open('test7.py').read())
 
 #ed.AddText("This is a test\nThis is only a test.\n\nHere we go cowboys, here we go!!!\nThe End")