Plugins/VcsPlugins/vcsMercurial/HgAnnotateDialog.py

changeset 3898
4786fd10108b
parent 3656
441956d8fce5
child 4021
195a471c327b
equal deleted inserted replaced
3897:ae4d4d69ad40 3898:4786fd10108b
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