src/eric7/SqlBrowser/SqlConnectionDialog.py

branch
eric7
changeset 10692
9becf9ca115c
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10691:d1a603a70f83 10692:9becf9ca115c
70 self.okButton.setEnabled(False) 70 self.okButton.setEnabled(False)
71 else: 71 else:
72 self.okButton.setEnabled(True) 72 self.okButton.setEnabled(True)
73 73
74 @pyqtSlot(int) 74 @pyqtSlot(int)
75 def on_driverCombo_activated(self, index): 75 def on_driverCombo_activated(self, _index):
76 """ 76 """
77 Private slot handling the selection of a database driver. 77 Private slot handling the selection of a database driver.
78 78
79 @param index index of the selected entry 79 @param _index index of the selected entry (unused)
80 @type int 80 @type int
81 """ 81 """
82 self.__updateDialog() 82 self.__updateDialog()
83 83
84 @pyqtSlot(str) 84 @pyqtSlot(str)
85 def on_databasePicker_textChanged(self, txt): 85 def on_databasePicker_textChanged(self, _txt):
86 """ 86 """
87 Private slot handling the change of the database name. 87 Private slot handling the change of the database name.
88 88
89 @param txt text of the edit 89 @param _txt text of the edit (unused)
90 @type str 90 @type str
91 """ 91 """
92 self.__updateDialog() 92 self.__updateDialog()
93 93
94 def getData(self): 94 def getData(self):

eric ide

mercurial