(self, selection, mainItem)
| 351 | return self.activate(callingWindow, fullContext, selection, i) |
| 352 | |
| 353 | def __getSelection(self, selection, mainItem): |
| 354 | if mainItem is not None and mainItem not in selection: |
| 355 | selection.append(mainItem) |
| 356 | return selection |
| 357 | |
| 358 | |
| 359 | class ContextMenuCombined(ContextMenu, metaclass=ABCMeta): |
no test coverage detected