UI/ClearPrivateDataDialog.py

changeset 5555
5ece4e830780
parent 5389
9b1c800daff3
child 6048
82ad8ec9548c
equal deleted inserted replaced
5554:c477ae02bf5f 5555:5ece4e830780
35 """ 35 """
36 Public method to get the data from the dialog. 36 Public method to get the data from the dialog.
37 37
38 @return flags indicating which data to clear 38 @return flags indicating which data to clear
39 (recent files, recent projects, recent multi projects, 39 (recent files, recent projects, recent multi projects,
40 debug histories, shell histories) 40 debug histories, shell histories, VCS histories)
41 @rtype tuple of bool 41 @rtype tuple of bool
42 """ 42 """
43 return ( 43 return (
44 self.filesCheckBox.isChecked(), 44 self.filesCheckBox.isChecked(),
45 self.projectsCheckBox.isChecked(), 45 self.projectsCheckBox.isChecked(),
46 self.multiProjectsCheckBox.isChecked(), 46 self.multiProjectsCheckBox.isChecked(),
47 self.debugCheckBox.isChecked(), 47 self.debugCheckBox.isChecked(),
48 self.shellCheckBox.isChecked(), 48 self.shellCheckBox.isChecked(),
49 self.vcsCheckBox.isChecked(),
50 self.pluginsCheckBox.isChecked(),
49 ) 51 )

eric ide

mercurial