(self)
| 14 | class FitSystemSecurityMenu(ContextMenuUnconditional): |
| 15 | |
| 16 | def __init__(self): |
| 17 | self.mainFrame = gui.mainFrame.MainFrame.getInstance() |
| 18 | self.optionMap = OrderedDict(( |
| 19 | (_t('High Security'), FitSystemSecurity.HISEC), |
| 20 | (_t('Low Security'), FitSystemSecurity.LOWSEC), |
| 21 | (_t('Null Security'), FitSystemSecurity.NULLSEC), |
| 22 | (_t('W-Space'), FitSystemSecurity.WSPACE))) |
| 23 | |
| 24 | def display(self, callingWindow, srcContext): |
| 25 | if srcContext != "fittingShip": |
nothing calls this directly
no test coverage detected