eric7/UI/ClearPrivateDataDialog.py

branch
eric7
changeset 8546
52454036c2b2
parent 8318
962bce857696
child 8881
54e42bc2437a
equal deleted inserted replaced
8545:9c9779b7142a 8546:52454036c2b2
33 """ 33 """
34 Public method to get the data from the dialog. 34 Public method to get the data from the dialog.
35 35
36 @return flags indicating which data to clear 36 @return flags indicating which data to clear
37 (recent files, recent projects, recent multi projects, 37 (recent files, recent projects, recent multi projects,
38 debug histories, shell histories, VCS histories) 38 debug histories, shell histories, unittest histories,
39 VCS histories, private data of plugins)
39 @rtype tuple of bool 40 @rtype tuple of bool
40 """ 41 """
41 return ( 42 return (
42 self.filesCheckBox.isChecked(), 43 self.filesCheckBox.isChecked(),
43 self.projectsCheckBox.isChecked(), 44 self.projectsCheckBox.isChecked(),
44 self.multiProjectsCheckBox.isChecked(), 45 self.multiProjectsCheckBox.isChecked(),
45 self.debugCheckBox.isChecked(), 46 self.debugCheckBox.isChecked(),
46 self.shellCheckBox.isChecked(), 47 self.shellCheckBox.isChecked(),
48 self.unittestCheckBox.isChecked(),
47 self.vcsCheckBox.isChecked(), 49 self.vcsCheckBox.isChecked(),
48 self.pluginsCheckBox.isChecked(), 50 self.pluginsCheckBox.isChecked(),
49 ) 51 )

eric ide

mercurial