Helpviewer/HelpClearPrivateDataDialog.py

changeset 350
db40effc5c65
parent 96
9624a110667d
child 668
b0061a6f7484
equal deleted inserted replaced
348:01246ad582c3 350:db40effc5c65
27 def getData(self): 27 def getData(self):
28 """ 28 """
29 Public method to get the data from the dialog. 29 Public method to get the data from the dialog.
30 30
31 @return tuple of flags indicating which data to clear (browsing history, 31 @return tuple of flags indicating which data to clear (browsing history,
32 search history, favicons, disk cache, cookies, passwords) (list of boolean) 32 search history, favicons, disk cache, cookies, passwords, web
33 databases) (list of boolean)
33 """ 34 """
34 return (self.historyCheckBox.isChecked(), 35 return (self.historyCheckBox.isChecked(),
35 self.searchCheckBox.isChecked(), 36 self.searchCheckBox.isChecked(),
36 self.iconsCheckBox.isChecked(), 37 self.iconsCheckBox.isChecked(),
37 self.cacheCheckBox.isChecked(), 38 self.cacheCheckBox.isChecked(),
38 self.cookiesCheckBox.isChecked(), 39 self.cookiesCheckBox.isChecked(),
39 self.passwordsCheckBox.isChecked()) 40 self.passwordsCheckBox.isChecked(),
41 self.databasesCheckBox.isChecked())

eric ide

mercurial