DataTypeEditor.py
changeset 235 7b58a3b5b6ec
parent 231 fc2d6cbb8b39
child 295 c6ef6d92ce16
--- a/DataTypeEditor.py	Thu Aug 21 15:44:42 2008 +0200
+++ b/DataTypeEditor.py	Fri Aug 22 13:49:22 2008 +0200
@@ -31,23 +31,6 @@
 
 DIMENSION_MODEL = re.compile("([0-9]+)\.\.([0-9]+)$")
 
-if wx.VERSION >= (2, 8, 0):
-    import wx.aui
-
-    class MDIDataTypeEditor(wx.aui.AuiMDIChildFrame):
-        def __init__(self, parent, tagname, window, controler):
-            wx.aui.AuiMDIChildFrame.__init__(self, parent, -1, title = "")
-            
-            sizer = wx.BoxSizer(wx.HORIZONTAL)
-            
-            self.Viewer = DataTypeEditor(self, tagname, window, controler)
-            
-            sizer.AddWindow(self.Viewer, 1, border=0, flag=wx.GROW)
-            
-            self.SetSizer(sizer)
-        
-        def GetViewer(self):
-            return self.Viewer
 
 #-------------------------------------------------------------------------------
 #                          Configuration Editor class