(self)
| 3445 | return None |
| 3446 | |
| 3447 | def getCurrentTreeWidget(self): |
| 3448 | currentIndex = self.ui.tabWidget.currentIndex(); |
| 3449 | treeWidgetList = [ |
| 3450 | self.ui.treeWidgetYourIdentities, |
| 3451 | False, |
| 3452 | self.ui.treeWidgetSubscriptions, |
| 3453 | self.ui.treeWidgetChans |
| 3454 | ] |
| 3455 | if currentIndex >= 0 and currentIndex < len(treeWidgetList): |
| 3456 | return treeWidgetList[currentIndex] |
| 3457 | else: |
| 3458 | return False |
| 3459 | |
| 3460 | def getAccountTreeWidget(self, account): |
| 3461 | try: |
no outgoing calls
no test coverage detected