Changeset 4426

Show
Ignore:
Timestamp:
07/18/07 16:47:52 (6 years ago)
Author:
DrewCormier
Message:

the component frame app now has a name :). congratulations comp frame app

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • WaveDev/trunk/WaveDev/wavedev/ComponentFrame.py

    r4424 r4426  
    10051005class App(wx.App): 
    10061006    def OnInit(self): 
    1007         self.main = create(None) 
     1007        self.name = 'comp_frame_app' 
     1008        self.main = create(self) 
    10081009        self.main.Show() 
    10091010