(self, treeWidget=None)
| 3560 | |
| 3561 | # Group of functions for the Your Identities dialog box |
| 3562 | def getCurrentItem(self, treeWidget=None): |
| 3563 | if treeWidget is None: |
| 3564 | treeWidget = self.getCurrentTreeWidget() |
| 3565 | if treeWidget: |
| 3566 | currentItem = treeWidget.currentItem() |
| 3567 | if currentItem: |
| 3568 | return currentItem |
| 3569 | return False |
| 3570 | |
| 3571 | def getCurrentAccount(self, treeWidget=None): |
| 3572 | currentItem = self.getCurrentItem(treeWidget) |
no test coverage detected