Preferences/ConfigurationPages/MultiProjectPage.py

branch
Py2 comp.
changeset 3058
0a02c433f52d
parent 3057
10516539f238
parent 3025
67064c71df21
child 3060
5883ce99ee12
equal deleted inserted replaced
3057:10516539f238 3058:0a02c433f52d
46 46
47 def save(self): 47 def save(self):
48 """ 48 """
49 Public slot to save the Project configuration. 49 Public slot to save the Project configuration.
50 """ 50 """
51 Preferences.setMultiProject("OpenMasterAutomatically", 51 Preferences.setMultiProject(
52 "OpenMasterAutomatically",
52 self.openMasterAutomaticallyCheckBox.isChecked()) 53 self.openMasterAutomaticallyCheckBox.isChecked())
53 Preferences.setMultiProject("XMLTimestamp", 54 Preferences.setMultiProject(
55 "XMLTimestamp",
54 self.multiProjectTimestampCheckBox.isChecked()) 56 self.multiProjectTimestampCheckBox.isChecked())
55 Preferences.setMultiProject("RecentNumber", 57 Preferences.setMultiProject(
58 "RecentNumber",
56 self.multiProjectRecentSpinBox.value()) 59 self.multiProjectRecentSpinBox.value())
57 Preferences.setMultiProject("Workspace", 60 Preferences.setMultiProject(
61 "Workspace",
58 self.workspaceEdit.text()) 62 self.workspaceEdit.text())
59 63
60 @pyqtSlot() 64 @pyqtSlot()
61 def on_workspaceButton_clicked(self): 65 def on_workspaceButton_clicked(self):
62 """ 66 """

eric ide

mercurial