Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py

branch
5_5_x
changeset 3901
4ecd5b60d756
parent 3591
2f2a4a76dd22
equal deleted inserted replaced
3900:8c12501b6b48 3901:4ecd5b60d756
204 Private method to generate an annotate item in the annotation list. 204 Private method to generate an annotate item in the annotation list.
205 205
206 @param revision revision string (string) 206 @param revision revision string (string)
207 @param changeset changeset string (string) 207 @param changeset changeset string (string)
208 @param author author of the change (string) 208 @param author author of the change (string)
209 @param date date of the tag (string) 209 @param date date of the change (string)
210 @param text name (path) of the tag (string) 210 @param text text of the change (string)
211 """ 211 """
212 itm = QTreeWidgetItem( 212 itm = QTreeWidgetItem(
213 self.annotateList, 213 self.annotateList,
214 [revision, changeset, author, date, "{0:d}".format(self.lineno), 214 [revision, changeset, author, date, "{0:d}".format(self.lineno),
215 text]) 215 text])
281 self.input.setEchoMode(QLineEdit.Normal) 281 self.input.setEchoMode(QLineEdit.Normal)
282 282
283 @pyqtSlot() 283 @pyqtSlot()
284 def on_sendButton_clicked(self): 284 def on_sendButton_clicked(self):
285 """ 285 """
286 Private slot to send the input to the subversion process. 286 Private slot to send the input to the hg process.
287 """ 287 """
288 input = self.input.text() 288 input = self.input.text()
289 input += os.linesep 289 input += os.linesep
290 290
291 if self.passwordCheckBox.isChecked(): 291 if self.passwordCheckBox.isChecked():

eric ide

mercurial