Changeset 4675
- Timestamp:
- Dec 4, 2013 7:04:49 AM (11 years ago)
- Location:
- pjproject/branches/projects/pjsua2/pjsip-apps/src/pygui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/pjsua2/pjsip-apps/src/pygui/account.py
r4671 r4675 50 50 self.buddyList = [] 51 51 self.chatList = [] 52 self.deleting = False 52 53 53 54 def findBuddy(self, uri): -
pjproject/branches/projects/pjsua2/pjsip-apps/src/pygui/application.py
r4671 r4675 138 138 139 139 def updateAccount(self, acc): 140 if acc.deleting: 141 return # ignore 140 142 iid = str(acc.randId) 141 143 text = acc.cfg.idUri … … 354 356 iid = str(acc.randId) 355 357 self.accList.remove(acc) 358 acc.setRegistration(False) 359 acc.deleting = True 356 360 del acc 357 361 self.tv.delete( (iid,) )
Note: See TracChangeset
for help on using the changeset viewer.