From a023cc9c303c415a957fdd42bae02222c61f0bd0 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 8 Jun 2013 23:29:45 +0000 Subject: [PATCH] Richtext needs wxXML declarations git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- etg/_richtext.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etg/_richtext.py b/etg/_richtext.py index cb920490..a93f3340 100644 --- a/etg/_richtext.py +++ b/etg/_richtext.py @@ -52,6 +52,9 @@ def run(): module.addHeaderCode('#include ') module.addImport('_core') module.addPyCode("import wx", order=10) + module.addImport('_xml') + module.addPyCode("import wx.xml", order=10) + module.addInclude(INCLUDES) #-----------------------------------------------------------------