(self, callingWindow, fullContext, i)
| 39 | return _t('Copy All {}').format(self.viewSpecMap[self.srcContext][0]) |
| 40 | |
| 41 | def activate(self, callingWindow, fullContext, i): |
| 42 | items = self.viewSpecMap[self.srcContext][1](callingWindow) |
| 43 | export = self.viewSpecMap[self.srcContext][2](items) |
| 44 | if export: |
| 45 | toClipboard(export) |
| 46 | |
| 47 | |
| 48 | AdditionsExportAll.register() |
nothing calls this directly
no test coverage detected