()
| 52 | } |
| 53 | |
| 54 | public void cmdOk() { |
| 55 | cf.useQuickPrivacy = usePrivacy.getValue(); |
| 56 | cf.notInListDropLevel = nil.getSelectedIndex(); |
| 57 | if (cf.useQuickPrivacy) { |
| 58 | updateQuickPrivacyList(); |
| 59 | } else { |
| 60 | new PrivacyList(null).activate("active"); |
| 61 | new PrivacyList(null).activate("default"); |
| 62 | } |
| 63 | cf.saveToStorage(); |
| 64 | destroyView(); |
| 65 | } |
| 66 | |
| 67 | public int blockArrived(JabberDataBlock data) { |
| 68 | if (!cf.useQuickPrivacy) |
nothing calls this directly
no test coverage detected