48 |
48 |
49 def save(self): |
49 def save(self): |
50 """ |
50 """ |
51 Public slot to save the VirusTotal configuration. |
51 Public slot to save the VirusTotal configuration. |
52 """ |
52 """ |
53 Preferences.setHelp("VirusTotalEnabled", |
53 Preferences.setHelp( |
|
54 "VirusTotalEnabled", |
54 self.vtEnabledCheckBox.isChecked()) |
55 self.vtEnabledCheckBox.isChecked()) |
55 Preferences.setHelp("VirusTotalSecure", |
56 Preferences.setHelp( |
|
57 "VirusTotalSecure", |
56 self.vtSecureCheckBox.isChecked()) |
58 self.vtSecureCheckBox.isChecked()) |
57 Preferences.setHelp("VirusTotalServiceKey", |
59 Preferences.setHelp( |
|
60 "VirusTotalServiceKey", |
58 self.vtServiceKeyEdit.text()) |
61 self.vtServiceKeyEdit.text()) |
59 |
62 |
60 @pyqtSlot(str) |
63 @pyqtSlot(str) |
61 def on_vtServiceKeyEdit_textChanged(self, txt): |
64 def on_vtServiceKeyEdit_textChanged(self, txt): |
62 """ |
65 """ |