280 self.input.setEchoMode(QLineEdit.Normal) |
280 self.input.setEchoMode(QLineEdit.Normal) |
281 |
281 |
282 @pyqtSlot() |
282 @pyqtSlot() |
283 def on_sendButton_clicked(self): |
283 def on_sendButton_clicked(self): |
284 """ |
284 """ |
285 Private slot to send the input to the subversion process. |
285 Private slot to send the input to the Mercurial process. |
286 """ |
286 """ |
287 inputTxt = self.input.text() |
287 inputTxt = self.input.text() |
288 inputTxt += os.linesep |
288 inputTxt += os.linesep |
289 |
289 |
290 if self.passwordCheckBox.isChecked(): |
290 if self.passwordCheckBox.isChecked(): |