src/eric7/Preferences/ConfigurationPages/PluginManagerPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10069
435cc5875135
child 10439
21c28b0f9e41
equal deleted inserted replaced
10427:3733e2b23cf7 10428:a071d4065202
117 def on_repositoryUrlEditButton_toggled(self, checked): 117 def on_repositoryUrlEditButton_toggled(self, checked):
118 """ 118 """
119 Private slot to set the read only status of the repository URL line 119 Private slot to set the read only status of the repository URL line
120 edit. 120 edit.
121 121
122 @param checked state of the push button (boolean) 122 @param checked state of the push button
123 @type bool
123 """ 124 """
124 self.repositoryUrlEdit.setReadOnly(not checked) 125 self.repositoryUrlEdit.setReadOnly(not checked)
125 126
126 127
127 def create(dlg): # noqa: U100 128 def create(dlg): # noqa: U100
128 """ 129 """
129 Module function to create the configuration page. 130 Module function to create the configuration page.
130 131
131 @param dlg reference to the configuration dialog 132 @param dlg reference to the configuration dialog
132 @return reference to the instantiated page (ConfigurationPageBase) 133 @type ConfigurationDialog
134 @return reference to the instantiated page
135 @rtype ConfigurationPageBase
133 """ 136 """
134 page = PluginManagerPage() 137 page = PluginManagerPage()
135 return page 138 return page

eric ide

mercurial