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 ) |