Mercurial > libervia-backend
comparison frontends/wix/main_window.py @ 56:01ea5680207e
removed debug comments
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 10 Jan 2010 17:35:41 +1100 |
parents | 20e54702fc0b |
children | a5b5fb5fc9fd |
comparison
equal
deleted
inserted
replaced
55:20e54702fc0b | 56:01ea5680207e |
---|---|
218 class MainWindow(wx.Frame, QuickApp): | 218 class MainWindow(wx.Frame, QuickApp): |
219 """main app window""" | 219 """main app window""" |
220 | 220 |
221 def __init__(self): | 221 def __init__(self): |
222 wx.Frame.__init__(self,None, title="SAT Wix", size=(300,500)) | 222 wx.Frame.__init__(self,None, title="SAT Wix", size=(300,500)) |
223 self.CM = QuickContactManagement() #gof: | 223 self.CM = QuickContactManagement() #FIXME: not the best place |
224 | 224 |
225 | 225 |
226 #Frame elements | 226 #Frame elements |
227 self.contactList = ContactList(self, self.CM) | 227 self.contactList = ContactList(self, self.CM) |
228 self.contactList.registerActivatedCB(self.onContactActivated) | 228 self.contactList.registerActivatedCB(self.onContactActivated) |