src/eric7/Plugins/VcsPlugins/vcsMercurial/HgExportDialog.py

branch
eric7
changeset 10690
fab36645aa7d
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10689:3ede487187f2 10690:fab36645aa7d
66 enabled = False 66 enabled = False
67 67
68 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled) 68 self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(enabled)
69 69
70 @pyqtSlot(str) 70 @pyqtSlot(str)
71 def on_directoryPicker_textChanged(self, txt): 71 def on_directoryPicker_textChanged(self, _txt):
72 """ 72 """
73 Private slot to react on changes of the export directory edit. 73 Private slot to react on changes of the export directory edit.
74 74
75 @param txt contents of the line edit 75 @param _txt contents of the line edit (unused)
76 @type str 76 @type str
77 """ 77 """
78 self.__updateOK() 78 self.__updateOK()
79 79
80 @pyqtSlot(str) 80 @pyqtSlot(str)
81 def on_patternEdit_textChanged(self, txt): 81 def on_patternEdit_textChanged(self, _txt):
82 """ 82 """
83 Private slot to react on changes of the export file name pattern edit. 83 Private slot to react on changes of the export file name pattern edit.
84 84
85 @param txt contents of the line edit 85 @param _txt contents of the line edit (unused)
86 @type str 86 @type str
87 """ 87 """
88 self.__updateOK() 88 self.__updateOK()
89 89
90 @pyqtSlot() 90 @pyqtSlot()

eric ide

mercurial