Changeset 4810
- Timestamp:
- 08/25/07 09:35:21 (6 years ago)
- Files:
-
- 1 modified
-
experimental/components/rc2007_gui/wx_inits.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
experimental/components/rc2007_gui/wx_inits.py
r4801 r4810 15 15 16 16 class MainFrame(wx.Frame): 17 def __init__(self, parent , id, title, namespace, interface,18 component_name, port_name):17 def __init__(self, parent=None, id-1, pos=wx.DefaultPosition, 18 title="Team MPRG"): 19 19 20 20 self._init_ctrls(parent) … … 24 24 25 25 self.parent = parent 26 self.namespace = namespace27 self.interface = interface28 26 self.my_local_controls = None 29 self.component_name = component_name30 self.port_name = port_name31 27 self.setup_graphics() 32 28